using System; using System.Xml.Serialization; namespace Alipay.AopSdk.Core.Response { /// /// ZolozIdentificationCustomerCertifyQueryResponse. /// public class ZolozIdentificationCustomerCertifyQueryResponse : AopResponse { /// /// 是否为攻击 /// [XmlElement("attack")] public bool Attack { get; set; } /// /// 业务单据号,用于核对和排查 /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 图片字节数组进行Base64编码后的字符串 /// [XmlElement("img_str")] public string ImgStr { get; set; } /// /// 比对结果 /// [XmlElement("result")] public bool Result { get; set; } } }