NewGaoKaoApi/PaymentSDK/AliPay/Domain/UserInfomation.cs

37 lines
981 B
C#
Raw Permalink 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>
/// UserInfomation Data Structure.
/// </summary>
[Serializable]
public class UserInfomation : AopObject
{
/// <summary>
/// 证件号
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 身份证IDENTITY_CARD、护照PASSPORT、军官证OFFICER_CARD、士兵证SOLDIER_CARD、户口本HOKOU等。如有其它类型需要支持请与蚂蚁金服工作人员联系。
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 手机号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 姓名
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}