com.alipay.api.response.AlipayMerchantOrderDigestConsumerBatchqueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import java.util.Date;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.AlipayOrderDataOpenapiResultInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.merchant.order.digest.consumer.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:41:17
*/
public class AlipayMerchantOrderDigestConsumerBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4123635284117782175L;
/**
* 是否还有下一页
*/
@ApiField("has_next_page")
private Boolean hasNextPage;
/**
* 下一次请求的end_time(用于分页查询)
*/
@ApiField("next_end_time")
private Date nextEndTime;
/**
* 订单信息列表,当存在符合条件的订单时,则返回订单信息;
*/
@ApiListField("order_list")
@ApiField("alipay_order_data_openapi_result_info")
private List orderList;
public void setHasNextPage(Boolean hasNextPage) {
this.hasNextPage = hasNextPage;
}
public Boolean getHasNextPage( ) {
return this.hasNextPage;
}
public void setNextEndTime(Date nextEndTime) {
this.nextEndTime = nextEndTime;
}
public Date getNextEndTime( ) {
return this.nextEndTime;
}
public void setOrderList(List orderList) {
this.orderList = orderList;
}
public List getOrderList( ) {
return this.orderList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy