初始提交
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayUserAntpaasTestaccountCreateModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class AlipayUserAntpaasTestaccountCreateModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 认证等级,L1,L2,L3,L3可以开店
|
||||
/// </summary>
|
||||
[JsonProperty("account_level")]
|
||||
public string AccountLevel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 证件中的姓名,必须为中文,尽量不要超过6个汉字
|
||||
/// </summary>
|
||||
[JsonProperty("cert_name")]
|
||||
public string CertName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 证件号码
|
||||
/// </summary>
|
||||
[JsonProperty("cert_no")]
|
||||
public string CertNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 证件类型,IDENTITY_CARD 身份证,PASSPORT 护照,HK_MC_CARD 港澳证件
|
||||
/// </summary>
|
||||
[JsonProperty("cert_type")]
|
||||
public string CertType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 登录名,如邮箱的值
|
||||
/// </summary>
|
||||
[JsonProperty("logon_id")]
|
||||
public string LogonId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 登录名类型,EMAIL
|
||||
/// </summary>
|
||||
[JsonProperty("logon_type")]
|
||||
public string LogonType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注信息
|
||||
/// </summary>
|
||||
[JsonProperty("memo")]
|
||||
public string Memo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作类型,CREATION 仅创建, CERTIFY 仅认证, CREATION_AND_CERTIFY 创建+认证
|
||||
/// </summary>
|
||||
[JsonProperty("operation_type")]
|
||||
public string OperationType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作者工号
|
||||
/// </summary>
|
||||
[JsonProperty("operator_id")]
|
||||
public string OperatorId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 调用方IP地址
|
||||
/// </summary>
|
||||
[JsonProperty("remote_ip")]
|
||||
public string RemoteIp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝账户id,accountNo
|
||||
/// </summary>
|
||||
[JsonProperty("user_id")]
|
||||
public string UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账户状态,T Q
|
||||
/// </summary>
|
||||
[JsonProperty("user_status")]
|
||||
public string UserStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账户类型,PERSON 个人 ORG 企业
|
||||
/// </summary>
|
||||
[JsonProperty("user_type")]
|
||||
public string UserType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user