class Google::Apis::CoordinateV1::TokenPagination
Pagination information.
Attributes
kind[RW]
Identifies this object as pagination information. Corresponds to the JSON property `kind` @return [String]
next_page_token[RW]
A token to provide to get the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
previous_page_token[RW]
A token to provide to get the previous page of results. Corresponds to the JSON property `previousPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/coordinate_v1/classes.rb, line 605 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/coordinate_v1/classes.rb, line 610 def update!(**args) @kind = args[:kind] if args.key?(:kind) @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