31 lines
790 B
C#
31 lines
790 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayInsAutoAutoinsprodUserCertifyModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayInsAutoAutoinsprodUserCertifyModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 代理人姓名
|
|
/// </summary>
|
|
[XmlElement("agent_id_card_name")]
|
|
public string AgentIdCardName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 代理人身份证号
|
|
/// </summary>
|
|
[XmlElement("agent_id_card_no")]
|
|
public string AgentIdCardNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 代理人用户唯一标识
|
|
/// </summary>
|
|
[XmlElement("agent_user_id")]
|
|
public string AgentUserId { get; set; }
|
|
}
|
|
}
|