using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZolozIdentificationCustomerIdcardCertifyModel Data Structure. /// [Serializable] public class ZolozIdentificationCustomerIdcardCertifyModel : AopObject { /// /// 业务唯一id /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 当使用手填信息审核接口对营业执照进行审核时,填写该字段信息 /// [XmlElement("business_license_cert")] public BusinessLicenseCertFileds BusinessLicenseCert { get; set; } /// /// 当使用手填信息审核接口对身份证进行审核时,填写该字段信息 /// [XmlElement("cert")] public CertFields Cert { get; set; } /// /// 上传证件图片信息 /// [XmlElement("idcard_img")] public IdCardImg IdcardImg { get; set; } /// /// 用户uid /// [XmlElement("operater_id")] public string OperaterId { get; set; } } }