NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityProdFingerpri...

31 lines
1.1 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>
/// AlipaySecurityProdFingerprintDeviceVerifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityProdFingerprintDeviceVerifyModel : AopObject
{
/// <summary>
/// IFAA协议的版本目前为2.0;建议填写此字段,随着业务发展后面可能会强制要求传递;
/// </summary>
[XmlElement("ifaa_version")]
public string IfaaVersion { get; set; }
/// <summary>
/// ifaf_message:注册阶段客户端返回的协议体数据对应《IFAA本地免密技术规范》中的IFAFMessage内容中包含客户端的校验数据。
/// </summary>
[XmlElement("ifaf_message")]
public string IfafMessage { get; set; }
/// <summary>
/// 比如某种业务标准外部订单号,比如交易外部订单号,代表商户端自己订单,用于核对与问题排查。原则上来说需要保持唯一性。
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
}
}