using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZolozAuthenticationCustomerAnonymousfacesearchMatchModel Data Structure. /// [Serializable] public class ZolozAuthenticationCustomerAnonymousfacesearchMatchModel : AopObject { /// /// 防攻击能力参数 /// [XmlElement("antiattack")] public string Antiattack { get; set; } /// /// 地域编码 /// [XmlElement("areacode")] public string Areacode { get; set; } /// /// 活体照片的二进制内容,然后做base64编码 /// [XmlElement("authimg")] public string Authimg { get; set; } /// /// 代表业务方接入编号 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 业务量规模 /// [XmlElement("bizscale")] public string Bizscale { get; set; } /// /// 商户品牌 /// [XmlElement("brandcode")] public string Brandcode { get; set; } /// /// 商户机具唯一编码,关键参数 /// [XmlElement("devicenum")] public string Devicenum { get; set; } /// /// 拓展参数 /// [XmlElement("extinfo")] public string Extinfo { get; set; } /// /// 群组 /// [XmlElement("group")] public string Group { get; set; } /// /// 门店编码 /// [XmlElement("storecode")] public string Storecode { get; set; } /// /// 有效期天数,如7天、30天、365天 /// [XmlElement("validtimes")] public string Validtimes { get; set; } } }