NewGaoKaoApi/PaymentSDK/AliPay/Domain/SubMerchantEnterOpenModel.cs

49 lines
1.7 KiB
C#
Raw 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>
/// SubMerchantEnterOpenModel Data Structure.
/// </summary>
[Serializable]
public class SubMerchantEnterOpenModel : AopObject
{
/// <summary>
/// 扩展字段为json字符串格式入驻缴费后开票的产品如果需要传入自定义开票链接由此字段传入。
/// </summary>
[XmlElement("extend_fields")]
public string ExtendFields { get; set; }
/// <summary>
/// 商户行业枚举值如下subway地铁etcETConline_car_hailing网约车catering餐饮hotel酒店convenience_store便利店oil加油insurance保险service_provider运营商life_payment生活缴费political政务other其他
/// </summary>
[XmlElement("industry")]
public string Industry { get; set; }
/// <summary>
/// 开票商户pid入驻支付即开票场景的时候该字段必传
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
/// <summary>
/// 商户门店税号。
/// </summary>
[XmlElement("register_no")]
public string RegisterNo { get; set; }
/// <summary>
/// 商户门店全称。
/// </summary>
[XmlElement("sub_m_name")]
public string SubMName { get; set; }
/// <summary>
/// 商户门店简称,只能由大写字母、下划线、数字组成,且必须以大写字母开头。
/// </summary>
[XmlElement("sub_m_short_name")]
public string SubMShortName { get; set; }
}
}