NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserAntarchiveFaceIde...

49 lines
1.3 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>
/// AlipayUserAntarchiveFaceIdentifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAntarchiveFaceIdentifyModel : AopObject
{
/// <summary>
/// 比对业务场景,用于计费和限流等功能
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 证件上的姓名
/// </summary>
[XmlElement("cert_name")]
public string CertName { get; set; }
/// <summary>
/// 证件号
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 证件类型,取值范围为: 100 居民身份证
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 请求人像jpg格式BASE64转换后字符串大小限制为30K以内
/// </summary>
[XmlElement("portrait")]
public string Portrait { get; set; }
/// <summary>
/// 人脸区域坐标格式为left,top,right,bottom
/// </summary>
[XmlElement("portrait_auth_rect")]
public string PortraitAuthRect { get; set; }
}
}