using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// KoubeiMarketingDataSmartactivityForecastResponse. /// public class KoubeiMarketingDataSmartactivityForecastResponse : AopResponse { /// /// 领取数量 上限值 /// [XmlElement("apply_cnt_max")] public string ApplyCntMax { get; set; } /// /// 领取数量 下限值 /// [XmlElement("apply_cnt_min")] public string ApplyCntMin { get; set; } /// /// 新增曝光数量 上限值 /// [XmlElement("increased_exposure_max")] public string IncreasedExposureMax { get; set; } /// /// 新增曝光数量 下限值 /// [XmlElement("increased_exposure_min")] public string IncreasedExposureMin { get; set; } /// /// 提升复购率区间上限 /// [XmlElement("repay_rate_range_max")] public string RepayRateRangeMax { get; set; } /// /// 提升复购率区间下限 /// [XmlElement("repay_rate_range_min")] public string RepayRateRangeMin { get; set; } /// /// 活动收益金额(分)区间上限值 /// [XmlElement("trade_amt_range_max")] public string TradeAmtRangeMax { get; set; } /// /// 活动收益金额(分)区间下限值 /// [XmlElement("trade_amt_range_min")] public string TradeAmtRangeMin { get; set; } /// /// 核销数量区间上限 /// [XmlElement("verify_count_range_max")] public string VerifyCountRangeMax { get; set; } /// /// 核销数量区间下限 /// [XmlElement("verify_count_range_min")] public string VerifyCountRangeMin { get; set; } } }