NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserCertifyOpenInitia...

43 lines
2.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>
/// AlipayUserCertifyOpenInitializeModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCertifyOpenInitializeModel : AopObject
{
/// <summary>
/// 认证场景码。入参支持的认证场景码和商户签约的认证场景相关,取值如下: FACE多因子人脸认证 CERT_PHOTO多因子证照认证 CERT_PHOTO_FACE :多因子证照和人脸认证 SMART_FACE多因子快捷认证
/// </summary>
[XmlElement("biz_code")]
public string BizCode { get; set; }
/// <summary>
/// 自定义人脸比对图片的base64编码格式的string字符串
/// </summary>
[XmlElement("face_contrast_picture")]
public string FaceContrastPicture { get; set; }
/// <summary>
/// 需要验证的身份信息参数格式为json字段详细说明如下 identity_type身份信息参数类型必填必须传入CERT_INFO cert_type证件类型必填当前支持身份证必须传入IDENTITY_CARD cert_name真实姓名必填填写需要验证的真实姓名 cert_no证件号码必填填写需要验证的证件号码
/// </summary>
[XmlElement("identity_param")]
public string IdentityParam { get; set; }
/// <summary>
/// 商户个性化配置格式为json详细支持的字段说明为 return_url需要回跳的目标地址必填一般指定为商户业务页面
/// </summary>
[XmlElement("merchant_config")]
public string MerchantConfig { get; set; }
/// <summary>
/// 商户请求的唯一标识商户要保证其唯一性值为32位长度的字母数字组合。建议前面几位字符是商户自定义的简称中间可以使用一段时间后段可以使用一个随机或递增序列
/// </summary>
[XmlElement("outer_order_no")]
public string OuterOrderNo { get; set; }
}
}