using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// CampDetailInfo Data Structure. /// [Serializable] public class CampDetailInfo : AopObject { /// /// 活动开始时间 /// [JsonProperty("begin_time")] public string BeginTime { get; set; } /// /// 业务id,与bizType 一一对应,如:biz_type为消费送,biz_id为消费送活动id /// [JsonProperty("biz_id")] public string BizId { get; set; } /// /// 业务类型:CONSUME_SEND:消费送;MRT_DISCOUNT:商户立减;OBTAIN:通用领券 /// [JsonProperty("biz_type")] public string BizType { get; set; } /// /// 活动描述 /// [JsonProperty("camp_desc")] public string CampDesc { get; set; } /// /// 需要解析该json串,title为标题,details是描述,多个detail需要换行 /// [JsonProperty("camp_guide")] public string CampGuide { get; set; } /// /// 活动结束时间 /// [JsonProperty("end_time")] public string EndTime { get; set; } /// /// 扩展字段信息,用Map对象json串保存 /// [JsonProperty("ext_info")] public string ExtInfo { get; set; } /// /// 每人每日参与次数 -1为不限制 /// [JsonProperty("win_limit_daily")] public string WinLimitDaily { get; set; } /// /// 每人总参与次数 -1 为不限制 /// [JsonProperty("win_limit_life")] public string WinLimitLife { get; set; } } }