com.alipay.api.response.AlipayTrustUserReportGetResponse 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: alipay.trust.user.report.get response.
*
* @author auto create
* @since 1.0, 2016-03-04 11:36:24
*/
public class AlipayTrustUserReportGetResponse extends AlipayResponse {
private static final long serialVersionUID = 6581191191292771952L;
/**
* 报告内容,格式详见示例代码
*/
@ApiField("report")
private String report;
public void setReport(String report) {
this.report = report;
}
public String getReport( ) {
return this.report;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy