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

79 lines
1.9 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>
/// FaceAbilityExtInfo Data Structure.
/// </summary>
[Serializable]
public class FaceAbilityExtInfo : AopObject
{
/// <summary>
/// 年龄
/// </summary>
[XmlElement("age")]
public string Age { get; set; }
/// <summary>
/// 证件号信息
/// </summary>
[XmlElement("cert_name")]
public string CertName { get; set; }
/// <summary>
/// 证件号信息
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 证件类别
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 比对源渠道信息
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 人脸加密后的特征
/// </summary>
[XmlElement("feature")]
public string Feature { get; set; }
/// <summary>
/// 是否存在攻击
/// </summary>
[XmlElement("hasrisk")]
public string Hasrisk { get; set; }
/// <summary>
/// 质量分
/// </summary>
[XmlElement("quality")]
public string Quality { get; set; }
/// <summary>
/// 特征矩形区域"442,231,412,262"
/// </summary>
[XmlElement("rect")]
public string Rect { get; set; }
/// <summary>
/// 男女
/// </summary>
[XmlElement("sex")]
public string Sex { get; set; }
/// <summary>
/// 活体源customer业务方自定义采集alisp:支付宝小程序
/// </summary>
[XmlElement("source")]
public string Source { get; set; }
}
}