using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserAntarchiveCustrelationAddModel Data Structure. /// [Serializable] public class AlipayUserAntarchiveCustrelationAddModel : AopObject { /// /// 待关联客户id /// [XmlElement("cust_id")] public string CustId { get; set; } /// /// 蚂蚁档案身份信息证明 /// [XmlElement("identity_certificate")] public AntArchiveIdentityCertificate IdentityCertificate { get; set; } } }