using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySecurityProdIrisCreateModel Data Structure. /// [Serializable] public class AlipaySecurityProdIrisCreateModel : AopObject { /// /// 虹膜注册的关联token,用于关联跨设备分次注册 /// [XmlElement("biz_token")] public string BizToken { get; set; } /// /// 虹膜扩展参数,用于后续扩展,格式为json格式,目前传入参数为iris_vendor,虹膜厂商 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 虹膜库分组。每个商户可以使用多个虹膜库分组,虹膜搜索时会在指定的虹膜库分组中搜索 /// [XmlElement("group_id")] public string GroupId { get; set; } /// /// 虹膜特征字节数组进行Base64编码后的字符串 /// [XmlElement("iris_str")] public string IrisStr { get; set; } /// /// 虹膜注册操作类型,方便后续扩展,目前传入固定irisVerify /// [XmlElement("operate_type")] public string OperateType { get; set; } /// /// 外部应用标识,用于标识使用虹膜的应用来源 /// [XmlElement("out_app_flag")] public string OutAppFlag { get; set; } /// /// 外部业务号,商户的业务单据号,用于核对与问题排查 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 用于标识虹膜对应的注册人的id,如支付宝的uid、信用id等等,此处只需要业务方传入唯一可以标识的身份的id即可,虹膜系统不使用此id反查任何内容。用途是在校验的时候返回业务可以识别的唯一id。 /// [XmlElement("person_id")] public string PersonId { get; set; } } }