using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ZolozIdentificationCustomerSmilerepoSyncModel Data Structure.
///
[Serializable]
public class ZolozIdentificationCustomerSmilerepoSyncModel : AopObject
{
///
/// 活体图片encode base64 String
///
[XmlElement("auth_img")]
public string AuthImg { get; set; }
///
/// 商户的机具编码
///
[XmlElement("device_num")]
public string DeviceNum { get; set; }
///
/// 人脸定制分配的场景码
///
[XmlElement("scene_code")]
public string SceneCode { get; set; }
///
/// 人脸相关的比对结果信
///
[XmlElement("zface_info")]
public string ZfaceInfo { get; set; }
}
}