Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ZolozAuthenticationCustomerFtokenQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

31 lines
921 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.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; }
}
}