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