TaobaoTbkOptimusTouMaterialIdsGetTouMaterials.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkOptimusTouMaterialIdsGetTouMaterials
  6. {
  7. /*
  8. 物料集合名称
  9. */
  10. private string? materialName;
  11. /*
  12. 物料id
  13. */
  14. private long? materialId;
  15. /*
  16. 物料类型,1: 商品;2:权益
  17. */
  18. private long? materialType;
  19. /*
  20. 物料主题类型, 1促销活动;2热门主题;3精选榜单;4行业频道等;5其他
  21. */
  22. private long? subject;
  23. /*
  24. 开始时间,Unix时间戳
  25. */
  26. private long? startTime;
  27. /*
  28. 结束时间,Unix时间戳
  29. */
  30. private long? endTime;
  31. [JsonPropertyName("material_name")]
  32. public string? MaterialName
  33. {
  34. get => materialName;
  35. set => this.materialName = value;
  36. }
  37. [JsonPropertyName("material_id")]
  38. public long? MaterialId
  39. {
  40. get => materialId;
  41. set => this.materialId = value;
  42. }
  43. [JsonPropertyName("material_type")]
  44. public long? MaterialType
  45. {
  46. get => materialType;
  47. set => this.materialType = value;
  48. }
  49. [JsonPropertyName("subject")]
  50. public long? Subject
  51. {
  52. get => subject;
  53. set => this.subject = value;
  54. }
  55. [JsonPropertyName("start_time")]
  56. public long? StartTime
  57. {
  58. get => startTime;
  59. set => this.startTime = value;
  60. }
  61. [JsonPropertyName("end_time")]
  62. public long? EndTime
  63. {
  64. get => endTime;
  65. set => this.endTime = value;
  66. }
  67. }