Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserAntpaasTestaccountCreateModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

90 lines
2.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserAntpaasTestaccountCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAntpaasTestaccountCreateModel : AopObject
{
/// <summary>
/// 认证等级L1L2L3L3可以开店
/// </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>
/// 支付宝账户idaccountNo
/// </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; }
}
}