39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
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; }
|
||
}
|
||
}
|