using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserAuthZhimaperInnerApplyModel Data Structure. /// [Serializable] public class AlipayUserAuthZhimaperInnerApplyModel : AopObject { /// /// 证件号码 /// [XmlElement("cert_no")] public string CertNo { get; set; } /// /// IDENTITY_CARD :身份证 /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 芝麻平台服务商模式下的二级商户标识,如果是直连商户调用该接口,不需要设置 /// [XmlElement("linked_merchant_id")] public string LinkedMerchantId { get; set; } /// /// 手机号码 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 姓名 /// [XmlElement("name")] public string Name { get; set; } } }