VoucherDetail.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // This file is auto-generated, don't edit it. Thanks.
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using Tea;
  6. namespace Alipay.EasySDK.Payment.FaceToFace.Models
  7. {
  8. public class VoucherDetail : TeaModel {
  9. [NameInMap("id")]
  10. [Validation(Required=true)]
  11. public string Id { get; set; }
  12. [NameInMap("name")]
  13. [Validation(Required=true)]
  14. public string Name { get; set; }
  15. [NameInMap("type")]
  16. [Validation(Required=true)]
  17. public string Type { get; set; }
  18. [NameInMap("amount")]
  19. [Validation(Required=true)]
  20. public string Amount { get; set; }
  21. [NameInMap("merchant_contribute")]
  22. [Validation(Required=true)]
  23. public string MerchantContribute { get; set; }
  24. [NameInMap("other_contribute")]
  25. [Validation(Required=true)]
  26. public string OtherContribute { get; set; }
  27. [NameInMap("memo")]
  28. [Validation(Required=true)]
  29. public string Memo { get; set; }
  30. [NameInMap("template_id")]
  31. [Validation(Required=true)]
  32. public string TemplateId { get; set; }
  33. [NameInMap("purchase_buyer_contribute")]
  34. [Validation(Required=true)]
  35. public string PurchaseBuyerContribute { get; set; }
  36. [NameInMap("purchase_merchant_contribute")]
  37. [Validation(Required=true)]
  38. public string PurchaseMerchantContribute { get; set; }
  39. [NameInMap("purchase_ant_contribute")]
  40. [Validation(Required=true)]
  41. public string PurchaseAntContribute { get; set; }
  42. }
  43. }