NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandMerchantIn...

31 lines
914 B
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>
/// AntMerchantExpandMerchantIndividualCreateModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandMerchantIndividualCreateModel : AopObject
{
/// <summary>
/// 商户证件编号(企业或者个体工商户提供营业执照,事业单位提供事证号)
/// </summary>
[XmlElement("business_license")]
public string BusinessLicense { get; set; }
/// <summary>
/// 营业执照图片图片字节流base64编码后传入。
/// </summary>
[XmlElement("business_license_pic")]
public string BusinessLicensePic { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}