NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserAntpaasTestaccoun...

91 lines
2.5 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>
/// AlipayUserAntpaasTestaccountCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAntpaasTestaccountCreateModel : AopObject
{
/// <summary>
/// 认证等级L1L2L3L3可以开店
/// </summary>
[XmlElement("account_level")]
public string AccountLevel { get; set; }
/// <summary>
/// 证件中的姓名必须为中文尽量不要超过6个汉字
/// </summary>
[XmlElement("cert_name")]
public string CertName { get; set; }
/// <summary>
/// 证件号码
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 证件类型IDENTITY_CARD 身份证PASSPORT 护照HK_MC_CARD 港澳证件
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 登录名,如邮箱的值
/// </summary>
[XmlElement("logon_id")]
public string LogonId { get; set; }
/// <summary>
/// 登录名类型EMAIL
/// </summary>
[XmlElement("logon_type")]
public string LogonType { get; set; }
/// <summary>
/// 备注信息
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 操作类型CREATION 仅创建, CERTIFY 仅认证, CREATION_AND_CERTIFY 创建+认证
/// </summary>
[XmlElement("operation_type")]
public string OperationType { get; set; }
/// <summary>
/// 操作者工号
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 调用方IP地址
/// </summary>
[XmlElement("remote_ip")]
public string RemoteIp { get; set; }
/// <summary>
/// 支付宝账户idaccountNo
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 账户状态T Q
/// </summary>
[XmlElement("user_status")]
public string UserStatus { get; set; }
/// <summary>
/// 账户类型PERSON 个人 ORG 企业
/// </summary>
[XmlElement("user_type")]
public string UserType { get; set; }
}
}