NewGaoKaoApi/PaymentSDK/AliPay/Domain/CertInfoResponse.cs

39 lines
1.1 KiB
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// CertInfoResponse Data Structure.
/// </summary>
[Serializable]
public class CertInfoResponse : AopObject
{
/// <summary>
/// 用户证件名称MD5值。 示例中的md5值对应明文为张三
/// </summary>
[XmlElement("cert_name")]
public string CertName { get; set; }
/// <summary>
/// 用户证件号码md5值。 示例中的md5值对应明文为330120198409141587
/// </summary>
[XmlElement("cert_number")]
public string CertNumber { get; set; }
/// <summary>
/// 表示证件类型,目前仅支持以下类型: 01 - 身份证
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 支付宝uid列表。一条证件信息可能对应多个支付宝uid。
/// </summary>
[XmlArray("uid")]
[XmlArrayItem("string")]
public List<string> Uid { get; set; }
}
}