using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KbAdvertSubjectVoucherResponse Data Structure. /// [Serializable] public class KbAdvertSubjectVoucherResponse : AopObject { /// /// 品牌名称 /// [JsonProperty("brand_name")] public string BrandName { get; set; } /// /// 适用城市ID列表 /// [JsonProperty("city_ids")] public List CityIds { get; set; } /// /// 背景图片 /// [JsonProperty("cover")] public string Cover { get; set; } /// /// 日库存 /// [JsonProperty("daily_inventory")] public string DailyInventory { get; set; } /// /// 结束时间 /// [JsonProperty("gmt_end")] public string GmtEnd { get; set; } /// /// 上架时间 /// [JsonProperty("gmt_start")] public string GmtStart { get; set; } /// /// logo图片 /// [JsonProperty("logo")] public string Logo { get; set; } /// /// 使用须知 /// [JsonProperty("manuals")] public List Manuals { get; set; } /// /// 商家名称 /// [JsonProperty("merchant_name")] public string MerchantName { get; set; } /// /// 商户ID /// [JsonProperty("partner_id")] public string PartnerId { get; set; } /// /// BUY:购买模式 OBTAIN:认领 /// [JsonProperty("purchase_mode")] public string PurchaseMode { get; set; } /// /// 门店ID列表 /// [JsonProperty("shop_ids")] public List ShopIds { get; set; } /// /// 起步金额 /// [JsonProperty("threshold_amount")] public string ThresholdAmount { get; set; } /// /// 总库存 /// [JsonProperty("total_inventory")] public string TotalInventory { get; set; } /// /// 券ID /// [JsonProperty("voucher_id")] public string VoucherId { get; set; } /// /// 券名称 /// [JsonProperty("voucher_name")] public string VoucherName { get; set; } /// /// 以元为单位 /// [JsonProperty("voucher_org_value")] public string VoucherOrgValue { get; set; } /// /// 券类型 LIMIT-单品券 NO_LIMIT_DISCOUNT-全场折扣券 NO_LIMIT_CASH-全场代金券 /// [JsonProperty("voucher_type")] public string VoucherType { get; set; } /// /// 券价值 /// [JsonProperty("voucher_value")] public string VoucherValue { get; set; } } }