Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/InvoiceTitleModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

78 lines
2.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InvoiceTitleModel Data Structure.
/// </summary>
[Serializable]
public class InvoiceTitleModel : AopObject
{
/// <summary>
/// 是否默认 可选值: false非默认 true默认抬头
/// </summary>
[JsonProperty("is_default")]
public bool IsDefault { get; set; }
/// <summary>
/// 支付宝用户登录名(脱敏后登录名) 该字段输出接口只限 alipay.ebpp.invoice.title.dynamic.get
/// </summary>
[JsonProperty("logon_id")]
public string LogonId { get; set; }
/// <summary>
/// 开户行账号
/// </summary>
[JsonProperty("open_bank_account")]
public string OpenBankAccount { get; set; }
/// <summary>
/// 开户行
/// </summary>
[JsonProperty("open_bank_name")]
public string OpenBankName { get; set; }
/// <summary>
/// 纳税人识别号
/// </summary>
[JsonProperty("tax_register_no")]
public string TaxRegisterNo { get; set; }
/// <summary>
/// 发票抬头名称
/// </summary>
[JsonProperty("title_name")]
public string TitleName { get; set; }
/// <summary>
/// 发票类型 可选值: PERSONAL个人抬头 CORPORATION公司抬头
/// </summary>
[JsonProperty("title_type")]
public string TitleType { get; set; }
/// <summary>
/// 地址
/// </summary>
[JsonProperty("user_address")]
public string UserAddress { get; set; }
/// <summary>
/// 用户邮箱
/// </summary>
[JsonProperty("user_email")]
public string UserEmail { get; set; }
/// <summary>
/// 支付宝用户id 说明动态码获取抬头时接口alipay.ebpp.invoice.title.dynamic.get 用户id返回结果为加密后密文 其他情况用户id来源于用户授权
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
/// <summary>
/// 联系电话,支持手机和固话两种格式
/// </summary>
[JsonProperty("user_mobile")]
public string UserMobile { get; set; }
}
}