using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KbAdvertMissionResponse Data Structure. /// [Serializable] public class KbAdvertMissionResponse : AopObject { /// /// 任务领取时间 /// [JsonProperty("gmt_claimed")] public string GmtClaimed { get; set; } /// /// 任务结束时间 /// [JsonProperty("gmt_end")] public string GmtEnd { get; set; } /// /// 任务开始时间 /// [JsonProperty("gmt_start")] public string GmtStart { get; set; } /// /// 任务ID /// [JsonProperty("mission_id")] public string MissionId { get; set; } /// /// 推广状态 EFFECTIVE-有效 INVALID-无效 /// [JsonProperty("promote_status")] public string PromoteStatus { get; set; } /// /// 任务标的列表 /// [JsonProperty("subjects")] public List Subjects { get; set; } } }