com.alipay.api.response.AlipayCommerceOperationTimescardInstanceBatchqueryResponse 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.TimeCardInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.operation.timescard.instance.batchquery response.
*
* @author auto create
* @since 1.0, 2024-10-30 14:12:22
*/
public class AlipayCommerceOperationTimescardInstanceBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3743922711685516811L;
/**
* 卡实例列表
*/
@ApiListField("datas")
@ApiField("time_card_info")
private List datas;
/**
* 页码
*/
@ApiField("page_num")
private String pageNum;
/**
* 分页size
*/
@ApiField("page_size")
private String pageSize;
/**
* 总数
*/
@ApiField("total_size")
private String totalSize;
public void setDatas(List datas) {
this.datas = datas;
}
public List getDatas( ) {
return this.datas;
}
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 setTotalSize(String totalSize) {
this.totalSize = totalSize;
}
public String getTotalSize( ) {
return this.totalSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy