55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|