NewGaoKaoApi/PaymentSDK/AliPay/Domain/SignerBean.cs

55 lines
1.4 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;
namespace Aop.Api.Domain
{
/// <summary>
/// SignerBean Data Structure.
/// </summary>
[Serializable]
public class SignerBean : AopObject
{
/// <summary>
/// 个人邮箱
/// </summary>
[XmlElement("email")]
public string Email { get; set; }
/// <summary>
/// 个人证件号
/// </summary>
[XmlElement("id_number")]
public string IdNumber { get; set; }
/// <summary>
/// 个人证件类型(证件号不为空时必填,详见个人证件类型说明
/// </summary>
[XmlElement("id_type")]
public string IdType { get; set; }
/// <summary>
/// 个人手机号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 个人姓名
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 企业信息signType=org时必填
/// </summary>
[XmlElement("org")]
public Org Org { get; set; }
/// <summary>
/// 个人唯一标识可传入平台的个人用户id、支付宝userid、证件号、手机号、邮箱等。
/// </summary>
[XmlElement("third_party_user_id")]
public string ThirdPartyUserId { get; set; }
}
}