using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// McardTemplateBenefitQuery Data Structure. /// [Serializable] public class McardTemplateBenefitQuery : AopObject { /// /// 权益描述信息 /// [JsonProperty("benefit_desc")] public string BenefitDesc { get; set; } /// /// 权益ID /// [JsonProperty("benefit_id")] public string BenefitId { get; set; } /// /// 权益结束时间 /// [JsonProperty("end_date")] public string EndDate { get; set; } /// /// 会员卡模板权益扩展信息:JSON格式; openUrl 说明:跳转到商户的优惠活动页面 /// [JsonProperty("ext_info")] public string ExtInfo { get; set; } /// /// 权益开始时间 /// [JsonProperty("start_date")] public string StartDate { get; set; } /// /// 会员卡模板ID /// [JsonProperty("template_id")] public string TemplateId { get; set; } /// /// 权益标题 /// [JsonProperty("title")] public string Title { get; set; } } }