com.alipay.api.response.AlipayEbppBillSearchResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
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.QueryInstBillInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.bill.search response.
*
* @author auto create
* @since 1.0, 2017-04-07 17:13:40
*/
public class AlipayEbppBillSearchResponse extends AlipayResponse {
private static final long serialVersionUID = 6378279515448624767L;
/**
* 已经缓存的的key
*/
@ApiField("cachekey")
private String cachekey;
/**
* 实时查询欠费单返回对象
*/
@ApiListField("inst_bill_info_list")
@ApiField("query_inst_bill_info")
private List instBillInfoList;
public void setCachekey(String cachekey) {
this.cachekey = cachekey;
}
public String getCachekey( ) {
return this.cachekey;
}
public void setInstBillInfoList(List instBillInfoList) {
this.instBillInfoList = instBillInfoList;
}
public List getInstBillInfoList( ) {
return this.instBillInfoList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy