com.alipay.api.response.AlipayOpenMiniMessageTemplateBatchqueryResponse 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.MerchantMsgTemplateVO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.mini.message.template.batchquery response.
*
* @author auto create
* @since 1.0, 2024-09-19 13:57:10
*/
public class AlipayOpenMiniMessageTemplateBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8343871346468173732L;
/**
* 分页页码
*/
@ApiField("page_num")
private String pageNum;
/**
* 分页大小,规定最大分页大小为10
*/
@ApiField("page_size")
private String pageSize;
/**
* 消息模板查询列表
*/
@ApiListField("template_list")
@ApiField("merchant_msg_template_v_o")
private List templateList;
/**
* 查询结果总数
*/
@ApiField("total_count")
private Long totalCount;
public void setPageNum(String pageNum) {
this.pageNum = pageNum;
}
public String getPageNum( ) {
return this.pageNum;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
}
public String getPageSize( ) {
return this.pageSize;
}
public void setTemplateList(List templateList) {
this.templateList = templateList;
}
public List getTemplateList( ) {
return this.templateList;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy