TaobaoTbkDgOptimusPromotionPromotionList.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability369.Domain;
  5. public class TaobaoTbkDgOptimusPromotionPromotionList
  6. {
  7. /*
  8. 权益开始时间,精确到毫秒时间戳
  9. */
  10. private string? entryUsedStartTime;
  11. /*
  12. 权益结束时间,精确到毫秒时间戳
  13. */
  14. private string? entryUsedEndTime;
  15. /*
  16. 权益起用门槛,满X元可用,券场景为满元,精确到分,如满100元可用
  17. */
  18. private string? entryCondition;
  19. /*
  20. 权益面额,券场景为减钱,精确到分
  21. */
  22. private string? entryDiscount;
  23. [JsonPropertyName("entry_used_start_time")]
  24. public string? EntryUsedStartTime
  25. {
  26. get => entryUsedStartTime;
  27. set => this.entryUsedStartTime = value;
  28. }
  29. [JsonPropertyName("entry_used_end_time")]
  30. public string? EntryUsedEndTime
  31. {
  32. get => entryUsedEndTime;
  33. set => this.entryUsedEndTime = value;
  34. }
  35. [JsonPropertyName("entry_condition")]
  36. public string? EntryCondition
  37. {
  38. get => entryCondition;
  39. set => this.entryCondition = value;
  40. }
  41. [JsonPropertyName("entry_discount")]
  42. public string? EntryDiscount
  43. {
  44. get => entryDiscount;
  45. set => this.entryDiscount = value;
  46. }
  47. }