com.alipay.api.response.AlipayUserAccountSearchResponse 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.AccountRecord;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.user.account.search response.
*
* @author auto create
* @since 1.0, 2016-08-11 18:02:23
*/
public class AlipayUserAccountSearchResponse extends AlipayResponse {
private static final long serialVersionUID = 6535114681948812395L;
/**
* 支付宝用户账务明细信息
*/
@ApiListField("account_records")
@ApiField("account_record")
private List accountRecords;
/**
* 总页面数
*/
@ApiField("total_pages")
private Long totalPages;
/**
* 总记录数
*/
@ApiField("total_results")
private Long totalResults;
public void setAccountRecords(List accountRecords) {
this.accountRecords = accountRecords;
}
public List getAccountRecords( ) {
return this.accountRecords;
}
public void setTotalPages(Long totalPages) {
this.totalPages = totalPages;
}
public Long getTotalPages( ) {
return this.totalPages;
}
public void setTotalResults(Long totalResults) {
this.totalResults = totalResults;
}
public Long getTotalResults( ) {
return this.totalResults;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy