using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ValidDateInfo Data Structure. /// [Serializable] public class ValidDateInfo : AopObject { /// /// 截至时间 /// [JsonProperty("end_time")] public string EndTime { get; set; } /// /// 相对有效期 /// [JsonProperty("relative_time")] public PeriodInfo RelativeTime { get; set; } /// /// 开始时间 /// [JsonProperty("start_time")] public string StartTime { get; set; } /// /// 时间模式,RELATIVE=相对时间,RELATIVE=绝对模式 /// [JsonProperty("time_mode")] public string TimeMode { get; set; } } }