TaobaoTbkDgMaterialOptionalUpgradeMgcInfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgMaterialOptionalUpgradeMgcInfo
  6. {
  7. /*
  8. 价格
  9. */
  10. private string? price;
  11. /*
  12. 价格描述
  13. */
  14. private string? priceDesc;
  15. /*
  16. 文案
  17. */
  18. private string? promotionSummary;
  19. /*
  20. 发布时间,13位毫秒时间戳
  21. */
  22. private string? publishTime;
  23. /*
  24. 生效时间,实时线报为0,未来线报为13位毫秒时间戳
  25. */
  26. private string? validTime;
  27. [JsonPropertyName("price")]
  28. public string? Price
  29. {
  30. get => price;
  31. set => this.price = value;
  32. }
  33. [JsonPropertyName("price_desc")]
  34. public string? PriceDesc
  35. {
  36. get => priceDesc;
  37. set => this.priceDesc = value;
  38. }
  39. [JsonPropertyName("promotion_summary")]
  40. public string? PromotionSummary
  41. {
  42. get => promotionSummary;
  43. set => this.promotionSummary = value;
  44. }
  45. [JsonPropertyName("publish_time")]
  46. public string? PublishTime
  47. {
  48. get => publishTime;
  49. set => this.publishTime = value;
  50. }
  51. [JsonPropertyName("valid_time")]
  52. public string? ValidTime
  53. {
  54. get => validTime;
  55. set => this.validTime = value;
  56. }
  57. }