NewGaoKaoApi/PaymentSDK/AliPay/Domain/SubMerchantCommonEnterOpenM...

31 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// SubMerchantCommonEnterOpenModel Data Structure.
/// </summary>
[Serializable]
public class SubMerchantCommonEnterOpenModel : AopObject
{
/// <summary>
/// 扩展字段为json字符串格式入驻支付即开票的产品需要传入用户白名单的时候由此字段传入支付即开票商户配置维度如果不传默认为SMID_MOD目前仅支持SMID_MODE和PID_MODE
/// </summary>
[XmlElement("extend_fields")]
public string ExtendFields { get; set; }
/// <summary>
/// 商户门店入驻的产品码,STANDARD_INVOICE:扫码开票INVOICE_RETURN:企业自建-发票回传INVOICE_EXPENSE:发票报销PAYMENT_OPEN:支付即开票PAY_FEE_OPEN:缴费后开票。
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 商户门店所属的服务方简称。
/// </summary>
[XmlElement("s_short_name")]
public string SShortName { get; set; }
}
}