NewGaoKaoApi/PaymentSDK/AliPay/Domain/ExtUserInfo.cs

55 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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