using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoMycarPromoTicketSyncModel Data Structure. /// [Serializable] public class AlipayEcoMycarPromoTicketSyncModel : AopObject { /// /// 营销活动ID /// [JsonProperty("active_id")] public string ActiveId { get; set; } /// /// 需要同步的卡券信息 /// [JsonProperty("code_no_list")] public List CodeNoList { get; set; } /// /// 卡券来源 /// [JsonProperty("source_type")] public string SourceType { get; set; } } }