NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityRiskVerifyide...

61 lines
1.8 KiB
C#
Raw 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>
/// AlipaySecurityRiskVerifyidentityInitializeModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskVerifyidentityInitializeModel : AopObject
{
/// <summary>
/// 用户证件号,当前支持身份证号
/// </summary>
[XmlElement("account_id")]
public string AccountId { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
[XmlElement("account_name")]
public string AccountName { get; set; }
/// <summary>
/// 用户证件类型需传入英文枚举常量当前支持CERT(大陆身份证)
/// </summary>
[XmlElement("account_type")]
public string AccountType { get; set; }
/// <summary>
/// 核验后回调业务url
/// </summary>
[XmlElement("biz_callback_url")]
public string BizCallbackUrl { get; set; }
/// <summary>
/// 接入业务方业务唯一性id
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 附加业务信息Json结构
/// </summary>
[XmlElement("biz_params")]
public string BizParams { get; set; }
/// <summary>
/// 核验服务名称,同时请求多种服务用“|”连接SMS短信FACE人脸
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 身份核验场景CODE商务谈判基础上由支付宝来分配。
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
}
}