using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZMGoOutDiscountInfo Data Structure. /// [Serializable] public class ZMGoOutDiscountInfo : AopObject { /// /// 商户回传的优惠金额,如用户享受的红包金额,单位元 /// [XmlElement("discount_amount")] public string DiscountAmount { get; set; } /// /// 商户数据回传的优惠信息的名称 /// [XmlElement("discount_name")] public string DiscountName { get; set; } /// /// 优惠信息的类型。为枚举值,商户可任意选择一个值作为入参传入。可取值: ("exclusiveBenefit","专享优惠"), ("exclusiveDiscount","专享折扣"), ("appreciationBenefit", "增值权益"), ("memberPoint", "会员积分") /// [XmlElement("discount_type")] public string DiscountType { get; set; } } }