TaobaoTbkDgGeneralLinkConvertCouponInfoDTO.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgGeneralLinkConvertCouponInfoDTO
  6. {
  7. /*
  8. 优惠券结束时间
  9. */
  10. private string? couponEndTime;
  11. /*
  12. 券ID
  13. */
  14. private string? activityId;
  15. /*
  16. 优惠券剩余数量
  17. */
  18. private long? couponRemainCount;
  19. /*
  20. 券面额
  21. */
  22. private string? couponAmount;
  23. /*
  24. 优惠券开始时间
  25. */
  26. private string? couponStartTime;
  27. /*
  28. 优惠券信息,满XX元减XX元
  29. */
  30. private string? couponDesc;
  31. /*
  32. 0-店铺 1-单品
  33. */
  34. private long? couponType;
  35. [JsonPropertyName("coupon_end_time")]
  36. public string? CouponEndTime
  37. {
  38. get => couponEndTime;
  39. set => this.couponEndTime = value;
  40. }
  41. [JsonPropertyName("activity_id")]
  42. public string? ActivityId
  43. {
  44. get => activityId;
  45. set => this.activityId = value;
  46. }
  47. [JsonPropertyName("coupon_remain_count")]
  48. public long? CouponRemainCount
  49. {
  50. get => couponRemainCount;
  51. set => this.couponRemainCount = value;
  52. }
  53. [JsonPropertyName("coupon_amount")]
  54. public string? CouponAmount
  55. {
  56. get => couponAmount;
  57. set => this.couponAmount = value;
  58. }
  59. [JsonPropertyName("coupon_start_time")]
  60. public string? CouponStartTime
  61. {
  62. get => couponStartTime;
  63. set => this.couponStartTime = value;
  64. }
  65. [JsonPropertyName("coupon_desc")]
  66. public string? CouponDesc
  67. {
  68. get => couponDesc;
  69. set => this.couponDesc = value;
  70. }
  71. [JsonPropertyName("coupon_type")]
  72. public long? CouponType
  73. {
  74. get => couponType;
  75. set => this.couponType = value;
  76. }
  77. }