using System; using System.Xml.Serialization; namespace Alipay.AopSdk.Core.Response { /// /// ZolozIdentificationCustomerCertifyConsultResponse. /// public class ZolozIdentificationCustomerCertifyConsultResponse : AopResponse { /// /// 业务单据号,用于核对和排查 /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 图片字节数组进行Base64编码后的字符串 /// [XmlElement("img_str")] public string ImgStr { get; set; } } }