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-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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, 2024-04-17 14:17:00
*/
public class AlipayUserAccountSearchResponse extends AlipayResponse {
private static final long serialVersionUID = 6474555999666397421L;
/**
* 支付宝用户账务明细信息
*/
@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