NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZolozAuthenticationCustomer...

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