using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InsMktCouponDTO Data Structure.
///
[Serializable]
public class InsMktCouponDTO : AopObject
{
///
/// 权益资产Id,如券Id
///
[XmlElement("asset_id")]
public string AssetId { get; set; }
///
/// 权益Id
///
[XmlElement("coupon_id")]
public string CouponId { get; set; }
///
/// 权益类型
///
[XmlElement("coupon_type")]
public string CouponType { get; set; }
///
/// 500元单品券
///
[XmlElement("coupon_value")]
public string CouponValue { get; set; }
///
/// 是否推荐使用该优惠
///
[XmlElement("recommend")]
public bool Recommend { get; set; }
///
/// 核销结束时间
///
[XmlElement("use_end_time")]
public string UseEndTime { get; set; }
///
/// 核销规则
///
[XmlElement("use_rule")]
public string UseRule { get; set; }
///
/// 核销开始时间
///
[XmlElement("use_start_time")]
public string UseStartTime { get; set; }
}
}