NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserAntidVirtualQuery...

31 lines
1.2 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>
/// AlipayUserAntidVirtualQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAntidVirtualQueryModel : AopObject
{
/// <summary>
/// 业务域场景,由提供方分配
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 识别因子内容json格式内容。跟identification_factor_type一一对应。MOBILE_BIZ类型对应的key为mobile,bizType,bizId; THIRD_PARTY类型对应的key为partnerId,userId,bizId; CERTIFICATE类型对应的key为certType,certNo,certName。 会以不同识别因子类型的识别内容作为唯一条件查询虚拟账户AntID
/// </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; }
}
}