using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsMktCouponBaseDTO Data Structure. /// [Serializable] public class InsMktCouponBaseDTO : AopObject { /// /// 权益Id /// [JsonProperty("coupon_id")] public string CouponId { get; set; } /// /// 权益类型 /// [JsonProperty("coupon_type")] public string CouponType { get; set; } /// /// 权益值 /// [JsonProperty("coupon_value")] public string CouponValue { get; set; } } }