com.alipay.api.response.KoubeiMarketingDataCustomreportQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.ReportDataItem;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.marketing.data.customreport.query response.
*
* @author auto create
* @since 1.0, 2017-07-26 11:32:05
*/
public class KoubeiMarketingDataCustomreportQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4211186616673325458L;
/**
* 数据量
*/
@ApiField("count")
private String count;
/**
* 满足自定义报表规则的报表数据
*/
@ApiListField("report_data")
@ApiField("report_data_item")
private List reportData;
public void setCount(String count) {
this.count = count;
}
public String getCount( ) {
return this.count;
}
public void setReportData(List reportData) {
this.reportData = reportData;
}
public List getReportData( ) {
return this.reportData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy