com.softlayer.api.ResultLimit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
package com.softlayer.api;
/** Object holding pagination information for an API request */
public class ResultLimit {
public final int offset;
public final int limit;
public ResultLimit(int limit) {
this(0, limit);
}
public ResultLimit(int offset, int limit) {
this.offset = offset;
this.limit = limit;
}
}