using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserCertdocUrlQueryModel Data Structure. /// [Serializable] public class AlipayUserCertdocUrlQueryModel : AopObject { /// /// 业务类型。向支付宝证件夹PD申请。 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 证件类型。支持传泛电子证件类型,或某地方具体的电子证件类型。传电子证件类型包括:E_IDENTITY_CARD 代表电子身份证。 /// [XmlElement("cert_doc_type")] public string CertDocType { get; set; } /// /// 中文城市名字。当url_type为SHOW时,cert_doc_type为泛电子证件类型时,必传。 /// [XmlElement("city")] public string City { get; set; } /// /// 链接类型。目前支持:SHOW 代表证件卡面页. /// [XmlElement("url_type")] public string UrlType { get; set; } } }