using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMarketingCdpAdvertiseReportQueryResponse. /// public class AlipayMarketingCdpAdvertiseReportQueryResponse : AopResponse { /// /// 日点击量 /// [XmlElement("click_pv_dd")] public string ClickPvDd { get; set; } /// /// 历史累积点击量 /// [XmlElement("click_pv_history")] public string ClickPvHistory { get; set; } /// /// 日点击用户数 /// [XmlElement("click_uv_dd")] public string ClickUvDd { get; set; } /// /// 历史累积点击用户数 /// [XmlElement("click_uv_history")] public string ClickUvHistory { get; set; } /// /// 效果分析日期 /// [XmlElement("report_date")] public string ReportDate { get; set; } /// /// 日曝光量 /// [XmlElement("show_pv_dd")] public string ShowPvDd { get; set; } /// /// 历史累积曝光量 /// [XmlElement("show_pv_history")] public string ShowPvHistory { get; set; } /// /// 日曝光用户数 /// [XmlElement("show_uv_dd")] public string ShowUvDd { get; set; } /// /// 历史累积曝光用户数 /// [XmlElement("show_uv_history")] public string ShowUvHistory { get; set; } } }