using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiMarketingDataCustomreportQueryResponse. /// public class KoubeiMarketingDataCustomreportQueryResponse : AopResponse { /// /// 数据量 /// [XmlElement("count")] public string Count { get; set; } /// /// 满足自定义报表规则的报表数据 /// [XmlArray("report_data")] [XmlArrayItem("report_data_item")] public List ReportData { get; set; } } }