using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsMktPreUseCouponDTO Data Structure. /// [Serializable] public class InsMktPreUseCouponDTO : AopObject { /// /// 资产Id /// [JsonProperty("asset_id")] public string AssetId { get; set; } /// /// 权益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; } /// /// 是否支持预核销 /// [JsonProperty("pre_use")] public bool PreUse { get; set; } /// /// 预核销失败原因 /// [JsonProperty("reason")] public string Reason { get; set; } } }