com.alipay.api.response.AlipayOpenMiniOrderbillApplistBatchqueryResponse 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.AppBaseInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.mini.orderbill.applist.batchquery response.
*
* @author auto create
* @since 1.0, 2024-08-26 13:52:08
*/
public class AlipayOpenMiniOrderbillApplistBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 7879732334269266724L;
/**
* 小程序列表详情
*/
@ApiListField("app_list")
@ApiField("app_base_info")
private List appList;
/**
* 总条数,在业务账单有出账记录的小程序总数
*/
@ApiField("total")
private Long total;
public void setAppList(List appList) {
this.appList = appList;
}
public List getAppList( ) {
return this.appList;
}
public void setTotal(Long total) {
this.total = total;
}
public Long getTotal( ) {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy