NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserAntpaasTokenident...

49 lines
1.4 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>
/// AlipayUserAntpaasTokenidentityCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAntpaasTokenidentityCreateModel : AopObject
{
/// <summary>
/// 业务Id如新零售场景下创建匿名淘宝账户时的品牌商Id。 如果该值为空,则底层创建匿名账户时以 biz_scene + mobile 进行幂等 如果该值非空则底层创建匿名账户Id时以 biz_scene + mobile + biz_id 进行幂等。
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 业务域场景
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 额外附加信息
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 附加信息Id如淘宝虚拟账号Id
/// </summary>
[XmlElement("ext_info_id")]
public string ExtInfoId { get; set; }
/// <summary>
/// 手机号码1864234324324
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 1-企业 2-个人
/// </summary>
[XmlElement("user_type")]
public string UserType { get; set; }
}
}