using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InsMktCouponDTO Data Structure.
///
[Serializable]
public class InsMktCouponDTO : AopObject
{
///
/// 权益资产Id,如券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; }
///
/// 500元单品券
///
[JsonProperty("coupon_value")]
public string CouponValue { get; set; }
///
/// 是否推荐使用该优惠
///
[JsonProperty("recommend")]
public bool Recommend { get; set; }
///
/// 核销结束时间
///
[JsonProperty("use_end_time")]
public string UseEndTime { get; set; }
///
/// 核销规则
///
[JsonProperty("use_rule")]
public string UseRule { get; set; }
///
/// 核销开始时间
///
[JsonProperty("use_start_time")]
public string UseStartTime { get; set; }
}
}