TaobaoTbkDgMaterialRecommendPredictRoundingUpPathMapData.cs 801 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgMaterialRecommendPredictRoundingUpPathMapData
  6. {
  7. /*
  8. 优惠名称,如“商品券”、“跨店满减”、“单品直降”等
  9. */
  10. private string? promotionTitle;
  11. /*
  12. 优惠利益点文案,如“2件5折”、“每200减20”等
  13. */
  14. private string? promotionDesc;
  15. [JsonPropertyName("promotion_title")]
  16. public string? PromotionTitle
  17. {
  18. get => promotionTitle;
  19. set => this.promotionTitle = value;
  20. }
  21. [JsonPropertyName("promotion_desc")]
  22. public string? PromotionDesc
  23. {
  24. get => promotionDesc;
  25. set => this.promotionDesc = value;
  26. }
  27. }