AlipayMerchantWeikeInvoiceNotifyModel.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  5. {
  6. /// <summary>
  7. /// AlipayMerchantWeikeInvoiceNotifyModel Data Structure.
  8. /// </summary>
  9. [Serializable]
  10. public class AlipayMerchantWeikeInvoiceNotifyModel : AlipayObject
  11. {
  12. /// <summary>
  13. /// 申请ID
  14. /// </summary>
  15. [JsonProperty("apply_id")]
  16. public string ApplyId { get; set; }
  17. /// <summary>
  18. /// 开票拒绝反馈错误码
  19. /// </summary>
  20. [JsonProperty("feedback_code")]
  21. public string FeedbackCode { get; set; }
  22. /// <summary>
  23. /// 开票拒绝反馈原因
  24. /// </summary>
  25. [JsonProperty("feedback_msg")]
  26. public string FeedbackMsg { get; set; }
  27. /// <summary>
  28. /// 反馈状态:true开票成功;false开票拒绝
  29. /// </summary>
  30. [JsonProperty("feedback_result")]
  31. public bool FeedbackResult { get; set; }
  32. /// <summary>
  33. /// 发票种类,0=电子发票,1=纸质发票,2=专票
  34. /// </summary>
  35. [JsonProperty("invoice_kind")]
  36. public long InvoiceKind { get; set; }
  37. /// <summary>
  38. /// isv的物流信息
  39. /// </summary>
  40. [JsonProperty("logistics_info")]
  41. public List<IsvLogisticsInfo> LogisticsInfo { get; set; }
  42. }
  43. }