com.alipay.api.response.KoubeiMarketingDataMemberReportQueryResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.marketing.data.member.report.query response.
*
* @author auto create
* @since 1.0, 2017-06-23 09:40:18
*/
public class KoubeiMarketingDataMemberReportQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3622996878627666271L;
/**
* 查询成功时返回json格式数据
*/
@ApiField("report_data")
private String reportData;
public void setReportData(String reportData) {
this.reportData = reportData;
}
public String getReportData( ) {
return this.reportData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy