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