com.alipay.api.response.AlipayMarketingVoucherTemplatelistQueryResponse 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.VoucherTemplateLiteInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.marketing.voucher.templatelist.query response.
*
* @author auto create
* @since 1.0, 2017-06-19 11:27:56
*/
public class AlipayMarketingVoucherTemplatelistQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5426964685773973577L;
/**
* 当前页码,页码从1开始
*/
@ApiField("current_page")
private Long currentPage;
/**
* 每页条数
*/
@ApiField("items_per_page")
private Long itemsPerPage;
/**
* 总条数
*/
@ApiField("total_items")
private Long totalItems;
/**
* 总页数
*/
@ApiField("total_pages")
private Long totalPages;
/**
* 券模板列表
*/
@ApiListField("voucher_templates")
@ApiField("voucher_template_lite_info")
private List voucherTemplates;
public void setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
}
public Long getCurrentPage( ) {
return this.currentPage;
}
public void setItemsPerPage(Long itemsPerPage) {
this.itemsPerPage = itemsPerPage;
}
public Long getItemsPerPage( ) {
return this.itemsPerPage;
}
public void setTotalItems(Long totalItems) {
this.totalItems = totalItems;
}
public Long getTotalItems( ) {
return this.totalItems;
}
public void setTotalPages(Long totalPages) {
this.totalPages = totalPages;
}
public Long getTotalPages( ) {
return this.totalPages;
}
public void setVoucherTemplates(List voucherTemplates) {
this.voucherTemplates = voucherTemplates;
}
public List getVoucherTemplates( ) {
return this.voucherTemplates;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy