io.infinicast.client.api.paths.taskObjects.APListQueryResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinicast-client-jdk8 Show documentation
Show all versions of infinicast-client-jdk8 Show documentation
Infinicast SDK to communicate with the cloud.
package io.infinicast.client.api.paths.taskObjects;
import io.infinicast.client.impl.pathAccess.IPathAndData;
import java.util.ArrayList;
public class APListQueryResult {
ArrayList _list;
int _fullCount;
public ArrayList getList() {
return this._list;
}
public void setList(ArrayList value) {
this._list = value;
}
public int getFullCount() {
return this._fullCount;
}
public void setFullCount(int value) {
this._fullCount = value;
}
}