using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// ZolozIdentificationCustomerCertifyzhubQueryResponse. /// public class ZolozIdentificationCustomerCertifyzhubQueryResponse : AopResponse { /// /// 是否为攻击 /// [XmlElement("attack")] public bool Attack { get; set; } /// /// 业务单据号,用于核对和排查 /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 人脸属性信息,提供对人脸base64图片的额外描述,包括不限于人脸矩形框。目前仅为矩形框,无需脱敏。 /// [XmlElement("face_attr_info")] public FaceAttrInfo FaceAttrInfo { get; set; } /// /// 图片字节数组进行Base64编码后的字符串 /// [XmlElement("img_str")] public string ImgStr { get; set; } /// /// 人脸服务端返回码 /// [XmlElement("zim_code")] public string ZimCode { get; set; } /// /// 人脸服务端返回信息 /// [XmlElement("zim_msg")] public string ZimMsg { get; set; } } }