using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// MarketingInfo Data Structure. /// [Serializable] public class MarketingInfo : AopObject { /// /// 营销明细 /// [XmlArray("promotion_list")] [XmlArrayItem("promotion_detail")] public List PromotionList { get; set; } /// /// 总的营销金额,包括金本位和非金本位。该金额为所有promotion_list的金额总额。单位为元,精确到小数点后两位,取值范围[0.01,100000000]。返回promotion_list时,该字段不为空 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 订单营销的使用模式。该参数的值与商户入参中的制定营销use_mode一致 /// [XmlElement("use_mode")] public string UseMode { get; set; } } }