using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ZolozAuthenticationCustomerFacemanageCreateModel Data Structure.
///
[Serializable]
public class ZolozAuthenticationCustomerFacemanageCreateModel : AopObject
{
///
/// 地域编码
///
[XmlElement("areacode")]
public string Areacode { get; set; }
///
/// 人脸产品能力
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 业务量规模
///
[XmlElement("bizscale")]
public string Bizscale { get; set; }
///
/// 商户品牌
///
[XmlElement("brandcode")]
public string Brandcode { get; set; }
///
/// 商户机具唯一编码,关键参数
///
[XmlElement("devicenum")]
public string Devicenum { get; set; }
///
/// 拓展参数
///
[XmlElement("extinfo")]
public string Extinfo { get; set; }
///
/// 入库类型 IDCARD:身份证 ALIPAY_USER:支付宝用户id, ALIPAY_TEL:手机号入库 CUSTOMER:自定义
///
[XmlElement("facetype")]
public string Facetype { get; set; }
///
/// 入库用户信息
///
[XmlElement("faceval")]
public string Faceval { get; set; }
///
/// 分组5
///
[XmlElement("group")]
public string Group { get; set; }
///
/// 门店编码
///
[XmlElement("storecode")]
public string Storecode { get; set; }
///
/// 有效期天数,如7天、30天、365天
///
[XmlElement("validtimes")]
public string Validtimes { get; set; }
}
}