com.alipay.api.response.KoubeiSalesKbassetStuffProduceqrcodeBatchqueryResponse 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.AccessProduceQrcode;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.sales.kbasset.stuff.produceqrcode.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:39:05
*/
public class KoubeiSalesKbassetStuffProduceqrcodeBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3791552464625728526L;
/**
* 当前是否还有生产指令可以拉取;注意如果该值为false,也只有提示当前没有更多生产指令了,不代表后面没有生产指令,商户自己需要制定策略定时去拉取
*/
@ApiField("has_next_page")
private Boolean hasNextPage;
/**
* 口碑码列表
*/
@ApiListField("list")
@ApiField("access_produce_qrcode")
private List list;
public void setHasNextPage(Boolean hasNextPage) {
this.hasNextPage = hasNextPage;
}
public Boolean getHasNextPage( ) {
return this.hasNextPage;
}
public void setList(List list) {
this.list = list;
}
public List getList( ) {
return this.list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy