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

55 lines
1.5 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>
/// AlipaySecurityRiskVerifyidentityApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskVerifyidentityApplyModel : AopObject
{
/// <summary>
/// 用户帐号
/// </summary>
[XmlElement("account_id")]
public string AccountId { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
[XmlElement("account_name")]
public string AccountName { get; set; }
/// <summary>
/// 帐号类型ALIPAY_USERID,CERT
/// </summary>
[XmlElement("account_type")]
public string AccountType { 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>
/// 身份核验场景CODE商务谈判基础上由支付宝来分配。
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 待校验的核身产品集合
/// </summary>
[XmlElement("validate_product_group")]
public string ValidateProductGroup { get; set; }
}
}