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

54 lines
1.2 KiB
C#
Raw 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>
/// AlipayUserDetail Data Structure.
/// </summary>
[Serializable]
public class AlipayUserDetail : AopObject
{
/// <summary>
/// 支付宝用户userId
/// </summary>
[JsonProperty("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 是否通过实名认证
/// </summary>
[JsonProperty("certified")]
public bool Certified { get; set; }
/// <summary>
/// 支付宝登录号
/// </summary>
[JsonProperty("logon_id")]
public string LogonId { get; set; }
/// <summary>
/// 真实姓名
/// </summary>
[JsonProperty("real_name")]
public string RealName { get; set; }
/// <summary>
/// 性别。可选值:m(男),f(女)
/// </summary>
[JsonProperty("sex")]
public string Sex { get; set; }
/// <summary>
/// 用户状态。可选:normal(正常), supervise (监管),delete(注销)
/// </summary>
[JsonProperty("user_status")]
public string UserStatus { get; set; }
/// <summary>
/// 用户类型。可选personal个人company公司
/// </summary>
[JsonProperty("user_type")]
public string UserType { get; set; }
}
}