NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCustomerCertificationI...

61 lines
2.4 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>
/// ZhimaCustomerCertificationInitializeModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCustomerCertificationInitializeModel : AopObject
{
/// <summary>
/// 认证场景码常用的场景码有FACE人脸认证。入参支持的认证场景码和商户签约的认证场景相关详见芝麻认证快速接入文档
/// </summary>
[XmlElement("biz_code")]
public string BizCode { get; set; }
/// <summary>
/// 扩展业务参数,暂时没有用到,接口预留
/// </summary>
[XmlElement("ext_biz_param")]
public string ExtBizParam { get; set; }
/// <summary>
/// 自定义人脸比对图片的base64编码格式的string字符串
/// </summary>
[XmlElement("face_contrast_picture")]
public string FaceContrastPicture { get; set; }
/// <summary>
/// "identity_type":”CERT_INFO”是指入参类型为证件信息。芝麻认证有很多认证场景biz_code不同认证认证场景biz_code支持的入参类型不同详细请见芝麻认证快速接入文档里面的表格
/// </summary>
[XmlElement("identity_param")]
public string IdentityParam { get; set; }
/// <summary>
/// 芝麻平台服务商模式下的二级商户标识,如果是直连商户调用该接口,不需要设置
/// </summary>
[XmlElement("linked_merchant_id")]
public string LinkedMerchantId { get; set; }
/// <summary>
/// 商户可选的一些设置
/// </summary>
[XmlElement("merchant_config")]
public string MerchantConfig { get; set; }
/// <summary>
/// 芝麻认证产品码,示例值为真实的产品码
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 商户请求的唯一标志商户要保证其唯一性。值为32位长度的字母数字下划线组合。建议前面几位字符是商户自定义的简称中间可以使用一段日期结尾可以使用一个序列
/// </summary>
[XmlElement("transaction_id")]
public string TransactionId { get; set; }
}
}