using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// VoucherModifyInfo Data Structure. /// [Serializable] public class VoucherModifyInfo : AopObject { /// /// 追加的适用门店 /// [JsonProperty("suitable_shops")] public List SuitableShops { get; set; } /// /// 描述信息 /// [JsonProperty("voucher_desc")] public string VoucherDesc { get; set; } /// /// 券id /// [JsonProperty("voucher_id")] public string VoucherId { get; set; } /// /// 券名称 /// [JsonProperty("voucher_name")] public string VoucherName { get; set; } /// /// 使用须知 /// [JsonProperty("voucher_terms")] public List VoucherTerms { get; set; } } }