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

31 lines
937 B
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>
/// ZolozAuthenticationCustomerSmilepayInitializeModel Data Structure.
/// </summary>
[Serializable]
public class ZolozAuthenticationCustomerSmilepayInitializeModel : AopObject
{
/// <summary>
/// 刷脸服务Id
/// </summary>
[XmlElement("service_id")]
public string ServiceId { get; set; }
/// <summary>
/// 商户可传入刷脸服务所需的扩展参数json格式
/// </summary>
[XmlElement("service_params")]
public string ServiceParams { get; set; }
/// <summary>
/// { "apdidToken": "设备指纹", "appName": "应用名称", "appVersion": "应用版本", "bioMetaInfo": "生物信息如2.3.0:3,-4" }
/// </summary>
[XmlElement("zimmetainfo")]
public string Zimmetainfo { get; set; }
}
}