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

com.smartling.api.strings.v2.pto.ListCommandPTO Maven / Gradle / Ivy

There is a newer version: 1.15.0
Show newest version
package com.smartling.api.strings.v2.pto;

import javax.ws.rs.QueryParam;

public class ListCommandPTO
{
    public static final int MAX_LIMIT = 500;

    @QueryParam("offset")
    private int offset = 0;

    @QueryParam("limit")
    private int limit = MAX_LIMIT;

    public int getOffset()
    {
        return offset;
    }

    public void setOffset(int offset)
    {
        this.offset = offset;
    }

    public int getLimit()
    {
        return limit;
    }

    public void setLimit(int limit)
    {
        this.limit = limit;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy