Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ZolozAuthenticationCustomerFaceabilityIdentifyModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

49 lines
1.4 KiB
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>
/// ZolozAuthenticationCustomerFaceabilityIdentifyModel Data Structure.
/// </summary>
[Serializable]
public class ZolozAuthenticationCustomerFaceabilityIdentifyModel : AopObject
{
/// <summary>
/// 开放活体图片进行人脸识别的能力包括extract(提取特征)、sex(检测性别)、rect(人脸矩形框检测)
/// </summary>
[XmlElement("ability")]
public string Ability { get; set; }
/// <summary>
/// 算法版本人脸PD定向提供
/// </summary>
[XmlElement("alg_ver")]
public string AlgVer { get; set; }
/// <summary>
/// 活体图片encode base64 String
/// </summary>
[XmlElement("auth_img")]
public string AuthImg { get; set; }
/// <summary>
/// 业务唯一ID
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 使用人脸能力所需要等拓展参数信息
/// </summary>
[XmlElement("ext_info")]
public FaceAbilityExtInfo ExtInfo { get; set; }
/// <summary>
/// 人脸定制分配的场景码
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
}
}