| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Defaultability.Domain;
- public class TaobaoTbkDgMaterialRecommendFutureActivityPromotionPathMapData
- {
- /*
- 预热优惠名称,如“商品券”、“跨店满减”、“单品直降”等
- */
- private string? promotionTitle;
- /*
- 预热优惠利益点文案,如“1件7.92折”、“每200减20”等
- */
- private string? promotionDesc;
- /*
- 预热实际优惠金额(元)
- */
- private string? promotionFee;
- /*
- 优惠开始时间
- */
- private string? promotionStartTime;
- /*
- 优惠结束时间
- */
- private string? promotionEndTime;
- [JsonPropertyName("promotion_title")]
- public string? PromotionTitle
- {
- get => promotionTitle;
- set => this.promotionTitle = value;
- }
- [JsonPropertyName("promotion_desc")]
- public string? PromotionDesc
- {
- get => promotionDesc;
- set => this.promotionDesc = value;
- }
- [JsonPropertyName("promotion_fee")]
- public string? PromotionFee
- {
- get => promotionFee;
- set => this.promotionFee = value;
- }
- [JsonPropertyName("promotion_start_time")]
- public string? PromotionStartTime
- {
- get => promotionStartTime;
- set => this.promotionStartTime = value;
- }
- [JsonPropertyName("promotion_end_time")]
- public string? PromotionEndTime
- {
- get => promotionEndTime;
- set => this.promotionEndTime = value;
- }
- }
|