Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ExtUserInfo.cs

55 lines
1.7 KiB
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ExtUserInfo Data Structure.
/// </summary>
[Serializable]
public class ExtUserInfo : AopObject
{
/// <summary>
/// 证件号 注need_check_info=T时该参数才有效
/// </summary>
[JsonProperty("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 身份证IDENTITY_CARD、护照PASSPORT、军官证OFFICER_CARD、士兵证SOLDIER_CARD、户口本HOKOU等。如有其它类型需要支持请与蚂蚁金服工作人员联系。 注:
/// need_check_info=T时该参数才有效
/// </summary>
[JsonProperty("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 是否强制校验付款人身份信息 T:强制校验F不强制
/// </summary>
[JsonProperty("fix_buyer")]
public string FixBuyer { get; set; }
/// <summary>
/// 允许的最小买家年龄,买家年龄必须大于等于所传数值 注: 1. need_check_info=T时该参数才有效 2. min_age为整数必须大于等于0
/// </summary>
[JsonProperty("min_age")]
public string MinAge { get; set; }
/// <summary>
/// 手机号 注:该参数暂不校验
/// </summary>
[JsonProperty("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 姓名 注: need_check_info=T时该参数才有效
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 是否强制校验身份信息 T:强制校验F不强制
/// </summary>
[JsonProperty("need_check_info")]
public string NeedCheckInfo { get; set; }
}
}