NewGaoKaoApi/PaymentSDK/AliPay/Domain/Insured.cs

37 lines
920 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>
/// Insured Data Structure.
/// </summary>
[Serializable]
public class Insured : AopObject
{
/// <summary>
/// 姓名,须与证件上名称一致
/// </summary>
[XmlElement("cert_name")]
public string CertName { get; set; }
/// <summary>
/// 被保人证件号码
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 证件类型, 枚举: IDENTITY_CARD身份证 备注:目前仅支持身份证类型
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 手机号
/// </summary>
[XmlElement("mobile_no")]
public string MobileNo { get; set; }
}
}