using System; using System.Xml.Serialization; using System.Collections.Generic; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// ZolozIdentificationCustomerIdcardCertifyResponse. /// public class ZolozIdentificationCustomerIdcardCertifyResponse : AopResponse { /// /// 证件宝审核结果 /// [XmlArray("cert_audit_result")] [XmlArrayItem("cert_audit_result")] public List CertAuditResult { get; set; } /// /// 业务校验是否通过 /// [XmlElement("passed")] public bool Passed { get; set; } /// /// 全流程上下文唯一id /// [XmlElement("token")] public string Token { get; set; } } }