All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softlayer.api.ResultLimit Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy