using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ReduceDstCampPrizeModel Data Structure.
///
[Serializable]
public class ReduceDstCampPrizeModel : AopObject
{
///
/// 折扣预算ID
///
[JsonProperty("budget_id")]
public string BudgetId { get; set; }
///
/// 奖品id, 修改必输,新增不输入
///
[JsonProperty("id")]
public string Id { get; set; }
///
/// 单次优惠上限(元)
///
[JsonProperty("max_discount_amt")]
public string MaxDiscountAmt { get; set; }
///
/// 满的金额只能填写正整数字,大于0,必须小于9位
///
[JsonProperty("reduce_amt_pre")]
public string ReduceAmtPre { get; set; }
///
/// 减的金额只能填写数字,大于0,小数点后最多2位,整数部分不能超过8位
///
[JsonProperty("reduce_amt_suf")]
public string ReduceAmtSuf { get; set; }
}
}