class Google::Apis::AndroidpublisherV3::TokenPagination

Pagination information returned by a List operation when token pagination is enabled. List operations that supports paging return only one “page” of results. This protocol buffer message describes the page that has been returned. When using token pagination, clients should use the next/previous token to get another page of the result. The presence or absence of next/ previous token indicates whether a next/previous page is available and provides a mean of accessing this page. ListRequest.page_token should be set to either next_page_token or previous_page_token to access another page.

Attributes

next_page_token[RW]

Tokens to pass to the standard list field 'page_token'. Whenever available, tokens are preferred over manipulating start_index. Corresponds to the JSON property `nextPageToken` @return [String]

previous_page_token[RW]

Corresponds to the JSON property `previousPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1894
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidpublisher_v3/classes.rb, line 1899
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @previous_page_token = args[:previous_page_token] if args.key?(:previous_page_token)
end