com.aliyun.openservices.log.response.ListTopostoreResponse Maven / Gradle / Ivy
package com.aliyun.openservices.log.response;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import com.aliyun.openservices.log.common.Topostore;
public class ListTopostoreResponse extends Response{
private int count = 0;
private int total = 0;
private List topostores = new ArrayList();
public ListTopostoreResponse(Map headers, List topostores, int count, int total) {
super(headers);
setCount(count);
setTotal(total);
setTopostores(topostores);
}
public int getCount() {
return this.count;
}
public void setCount(int count) {
this.count = count;
}
public int getTotal() {
return this.total;
}
public void setTotal(int total) {
this.total = total;
}
public List getTopostores() {
return this.topostores;
}
public void setTopostores(List topostores) {
this.topostores = topostores;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy