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