using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// OpenPromoPrizeRelativeTime Data Structure. /// [Serializable] public class OpenPromoPrizeRelativeTime : AopObject { /// /// 时间维度, MI:表示 分 H:表示 时 D:表示 日 W:表示 周 M:表示 月 /// [JsonProperty("dimension")] public string Dimension { get; set; } /// /// 相对值 /// [JsonProperty("value")] public string Value { get; set; } } }