using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayMarketingCampaignCashListQueryResponse. /// public class AlipayMarketingCampaignCashListQueryResponse : AopResponse { /// /// 活动列表 /// [XmlArray("camp_list")] [XmlArrayItem("cash_campaign_info")] public List CampList { get; set; } /// /// 分页的页码,起始从1开始 /// [XmlElement("page_index")] public string PageIndex { get; set; } /// /// 分页每页大小 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 活动总个数 /// [XmlElement("total_size")] public string TotalSize { get; set; } } }