using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// GetRuleInfo Data Structure. /// [Serializable] public class GetRuleInfo : AopObject { /// /// 截至时间 /// [JsonProperty("end_time")] public string EndTime { get; set; } /// /// 发放次数限制 /// [JsonProperty("get_count_limit")] public PeriodInfo GetCountLimit { get; set; } /// /// 开始时间 /// [JsonProperty("start_time")] public string StartTime { get; set; } } }