com.alipay.api.response.AlipayOpenSearchSubservicekeywordBatchqueryResponse Maven / Gradle / Ivy
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.SubServiceKeyWordInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.search.subservicekeyword.batchquery response.
*
* @author auto create
* @since 1.0, 2024-04-28 16:09:08
*/
public class AlipayOpenSearchSubservicekeywordBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1878324272951728386L;
/**
* 第几页
*/
@ApiField("page_number")
private Long pageNumber;
/**
* 每页条数
*/
@ApiField("page_size")
private Long pageSize;
/**
* 关键词明细
*/
@ApiListField("subservice_keyword_info")
@ApiField("sub_service_key_word_info")
private List subserviceKeywordInfo;
/**
* 总条数
*/
@ApiField("total_count")
private Long totalCount;
/**
* 总页数
*/
@ApiField("total_page_count")
private Long totalPageCount;
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
}
public Long getPageNumber( ) {
return this.pageNumber;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setSubserviceKeywordInfo(List subserviceKeywordInfo) {
this.subserviceKeywordInfo = subserviceKeywordInfo;
}
public List getSubserviceKeywordInfo( ) {
return this.subserviceKeywordInfo;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
public void setTotalPageCount(Long totalPageCount) {
this.totalPageCount = totalPageCount;
}
public Long getTotalPageCount( ) {
return this.totalPageCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy