class Google::Apis::DriveV3::StartPageToken

Attributes

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “drive# startPageToken”. Corresponds to the JSON property `kind` @return [String]

start_page_token[RW]

The starting page token for listing changes. Corresponds to the JSON property `startPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/drive_v3/classes.rb, line 2665
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @start_page_token = args[:start_page_token] if args.key?(:start_page_token)
end