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

com.ringcentral.definitions.TMNavigationInfo Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


public class TMNavigationInfo {
    /**
     * Previous page token. To get previous page, user should pass one of returned token in next request and, in turn, required page will be returned with new tokens
     */
    public String prevPageToken;
    /**
     * Next page token. To get next page, user should pass one of returned token in next request and, in turn, required page will be returned with new tokens
     */
    public String nextPageToken;

    public TMNavigationInfo prevPageToken(String prevPageToken) {
        this.prevPageToken = prevPageToken;
        return this;
    }

    public TMNavigationInfo nextPageToken(String nextPageToken) {
        this.nextPageToken = nextPageToken;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy