NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZolozAuthenticationCustomer...

37 lines
1.1 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>
/// ZolozAuthenticationCustomerFtokenQueryModel Data Structure.
/// </summary>
[Serializable]
public class ZolozAuthenticationCustomerFtokenQueryModel : AopObject
{
/// <summary>
/// 1、11人脸验证能力 2、1n人脸搜索能力支付宝uid入库 3、1n人脸搜索能力支付宝手机号入库 4、手机号和人脸识别综合能力
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 人脸产品拓展参数
/// </summary>
[XmlElement("ext_info")]
public FaceExtInfo ExtInfo { get; set; }
/// <summary>
/// 人脸token
/// </summary>
[XmlElement("ftoken")]
public string Ftoken { get; set; }
/// <summary>
/// 刷脸初始化流程中产生的zimId值
/// </summary>
[XmlElement("zim_id")]
public string ZimId { get; set; }
}
}