using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// CplifeNoticeDetail Data Structure. /// [Serializable] public class CplifeNoticeDetail : AopObject { /// /// 通告公告的具体内容 /// [JsonProperty("content")] public string Content { get; set; } /// /// 通知的下线时间. /// [JsonProperty("end_time")] public string EndTime { get; set; } /// /// 通知公告中允许出现的图片列表。 /// [JsonProperty("image_list")] public List ImageList { get; set; } /// /// 通知的上线时间,该时刻之后,用户才能在支付宝客户端看到该通知。 /// [JsonProperty("start_time")] public string StartTime { get; set; } /// /// 通知是否置顶,默认为false. /// [JsonProperty("stickied")] public bool Stickied { get; set; } /// /// 通知(公告)的标题 /// [JsonProperty("title")] public string Title { get; set; } /// /// 通告公告的具体类型.通知:“01” ,公告:“02” /// [JsonProperty("type")] public string Type { get; set; } } }