NewGaoKaoApi/PaymentSDK/AliPay/Domain/InvoiceTitleModel.cs

85 lines
2.2 KiB
C#
Raw 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>
/// InvoiceTitleModel Data Structure.
/// </summary>
[Serializable]
public class InvoiceTitleModel : AopObject
{
/// <summary>
/// 是否为用户设置默认抬头 字段值包括两种情况: false非默认 true默认抬头
/// </summary>
[XmlElement("is_default")]
public bool IsDefault { get; set; }
/// <summary>
/// 支付宝用户登录名
/// </summary>
[XmlElement("logon_id")]
public string LogonId { get; set; }
/// <summary>
/// 银行账号
/// </summary>
[XmlElement("open_bank_account")]
public string OpenBankAccount { get; set; }
/// <summary>
/// 开户银行
/// </summary>
[XmlElement("open_bank_name")]
public string OpenBankName { get; set; }
/// <summary>
/// 纳税人识别号
/// </summary>
[XmlElement("tax_register_no")]
public string TaxRegisterNo { get; set; }
/// <summary>
/// 用户私人手机号
/// </summary>
[XmlElement("tele_phone_no")]
public string TelePhoneNo { get; set; }
/// <summary>
/// 抬头名称
/// </summary>
[XmlElement("title_name")]
public string TitleName { get; set; }
/// <summary>
/// 抬头类型 字段值有两种情况抬: PERSONAL个人 CORPORATION单位
/// </summary>
[XmlElement("title_type")]
public string TitleType { get; set; }
/// <summary>
/// 地址
/// </summary>
[XmlElement("user_address")]
public string UserAddress { get; set; }
/// <summary>
/// 邮箱
/// </summary>
[XmlElement("user_email")]
public string UserEmail { get; set; }
/// <summary>
/// 支付宝用户id
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 电话号码
/// </summary>
[XmlElement("user_mobile")]
public string UserMobile { get; set; }
}
}