using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OutDiscountInfo Data Structure. /// [Serializable] public class OutDiscountInfo : AopObject { /// /// 优惠金额,单位:分 /// [XmlElement("discount_amount")] public long DiscountAmount { get; set; } /// /// 优惠名称 /// [XmlElement("discount_name")] public string DiscountName { get; set; } /// /// 优惠类型,必须是以下类型: EXCLUSIVE_BENEFIT("专享优惠"), EXCLUSIVE_DISCOUNT("专享折扣"), APPRECIATION_BENEFIT("增值权益"), MEMBER_POINT("会员积分"); /// [XmlElement("discount_type")] public string DiscountType { get; set; } } }