using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// RandomDiscountDstCampPrizeModel Data Structure. /// [Serializable] public class RandomDiscountDstCampPrizeModel : AopObject { /// /// 折扣预算ID /// [JsonProperty("budget_id")] public string BudgetId { get; set; } /// /// 随机立减折扣幅度列表 /// [JsonProperty("discount_random_model_list")] public List DiscountRandomModelList { get; set; } /// /// 奖品id /// [JsonProperty("id")] public string Id { get; set; } /// /// 最高优惠金额=订单金额X(1-封顶折扣) 折扣幅度必须为0.3到1之间的小数(保留小数点后2位) /// [JsonProperty("max_random_discount_rate")] public string MaxRandomDiscountRate { get; set; } } }