using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Essensoft.AspNetCore.Payment.Alipay.Domain { /// /// AlipayMerchantWeikeInvoiceNotifyModel Data Structure. /// [Serializable] public class AlipayMerchantWeikeInvoiceNotifyModel : AlipayObject { /// /// 申请ID /// [JsonProperty("apply_id")] public string ApplyId { get; set; } /// /// 开票拒绝反馈错误码 /// [JsonProperty("feedback_code")] public string FeedbackCode { get; set; } /// /// 开票拒绝反馈原因 /// [JsonProperty("feedback_msg")] public string FeedbackMsg { get; set; } /// /// 反馈状态:true开票成功;false开票拒绝 /// [JsonProperty("feedback_result")] public bool FeedbackResult { get; set; } /// /// 发票种类,0=电子发票,1=纸质发票,2=专票 /// [JsonProperty("invoice_kind")] public long InvoiceKind { get; set; } /// /// isv的物流信息 /// [JsonProperty("logistics_info")] public List LogisticsInfo { get; set; } } }