using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InsCoupon Data Structure. /// [Serializable] public class InsCoupon : AopObject { /// /// 实际使用的权益值,可选不唯一,可能是金额(分),也可能是业务约定的其他描述 /// [XmlElement("actual_coupon_value")] public string ActualCouponValue { get; set; } /// /// 实际使用的折扣金额(分),可选不唯一 /// [XmlElement("actual_discount_cash")] public long ActualDiscountCash { get; set; } /// /// 权益ID,必选不唯一,营销域分配 /// [XmlElement("coupon_id")] public string CouponId { get; set; } /// /// 权益类型,可选不唯一,营销域分配 /// [XmlElement("coupon_type")] public string CouponType { get; set; } /// /// 权益值,可选不唯一,可能是金额(分),也可能是业务约定的其他描述 /// [XmlElement("coupon_value")] public string CouponValue { get; set; } } }