using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayInsSceneInvoiceApplyModel Data Structure. /// [Serializable] public class AlipayInsSceneInvoiceApplyModel : AopObject { /// /// 发票寄送类型;ELECTRONIC:电子发票;PAPER:纸质发票;BOTH:电子+纸质 /// [JsonProperty("delivery_type")] public string DeliveryType { get; set; } /// /// 发票收件人 /// [JsonProperty("invoice_addressee")] public InsAddressee InvoiceAddressee { get; set; } /// /// 发票申请明细 /// [JsonProperty("invoice_apply_item")] public InsInvoiceApplyItem InvoiceApplyItem { get; set; } /// /// 申请发票开票日期 /// [JsonProperty("invoice_date")] public string InvoiceDate { get; set; } /// /// 发票抬头;收取发票的公司名称或个人姓名 /// [JsonProperty("invoice_title")] public string InvoiceTitle { get; set; } /// /// 开票类型;1:增值税普通发票(公司) ;2:增值税普通发票(个人) ;3:增值税专用发票. /// [JsonProperty("invoice_type")] public string InvoiceType { get; set; } /// /// 商户业务单号 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } /// /// 商户生成的发票申请请求单号【幂等字段】 /// [JsonProperty("out_request_no")] public string OutRequestNo { get; set; } } }