using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InsMktCouponConfigDTO Data Structure.
///
[Serializable]
public class InsMktCouponConfigDTO : AopObject
{
///
/// 权益配置Id
///
[JsonProperty("coupon_conf_id")]
public string CouponConfId { get; set; }
///
/// 权益类型
///
[JsonProperty("coupon_type")]
public string CouponType { get; set; }
///
/// 200元优惠券
///
[JsonProperty("coupon_value")]
public string CouponValue { 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; }
}
}