NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserAntidVirtualCreat...

49 lines
1.7 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>
/// AlipayUserAntidVirtualCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAntidVirtualCreateModel : AopObject
{
/// <summary>
/// 业务域场景,由提供方分配
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 额外附加信息
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 识别因子内容json格式内容。跟identification_factor_type一一对应。MOBILE_BIZ类型对应的key为mobile,bizType,bizId; THIRD_PARTY类型对应的key为partnerId,userId,bizId; CERTIFICATE类型对应的key为certType,certNo,certName。 会以不同识别因子类型的识别内容作为幂等条件。
/// </summary>
[XmlElement("identification_factor_content")]
public string IdentificationFactorContent { get; set; }
/// <summary>
/// 识别因子类型有3种分别为手机场景识别因子 MOBILE_BIZ第三方识别因子 THIRD_PARTY和证件识别因子 CERTIFICATE
/// </summary>
[XmlElement("identification_factor_type")]
public string IdentificationFactorType { get; set; }
/// <summary>
/// 注册来源,由提供方分配
/// </summary>
[XmlElement("register_from")]
public string RegisterFrom { get; set; }
/// <summary>
/// 用户类型1-个人 2-企业
/// </summary>
[XmlElement("user_type")]
public string UserType { get; set; }
}
}