NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityProdIrisVerif...

61 lines
2.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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