using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserAuthZhimaperInternalApplyModel Data Structure.
///
[Serializable]
public class AlipayUserAuthZhimaperInternalApplyModel : 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; }
}
}