Class: Google::Apis::DriveV3::ChangeList

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/drive_v3/classes.rb,
generated/google/apis/drive_v3/representations.rb,
generated/google/apis/drive_v3/representations.rb

Overview

A list of changes for a user.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ChangeList

Returns a new instance of ChangeList.



202
203
204
# File 'generated/google/apis/drive_v3/classes.rb', line 202

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#changesArray<Google::Apis::DriveV3::Change>

The page of changes. Corresponds to the JSON property changes

Returns:



183
184
185
# File 'generated/google/apis/drive_v3/classes.rb', line 183

def changes
  @changes
end

#kindString

This is always drive#changeList. Corresponds to the JSON property kind

Returns:

  • (String)


188
189
190
# File 'generated/google/apis/drive_v3/classes.rb', line 188

def kind
  @kind
end

#new_start_page_tokenString

The starting page token for future changes. This will be present only if the end of the current changes list has been reached. Corresponds to the JSON property newStartPageToken

Returns:

  • (String)


194
195
196
# File 'generated/google/apis/drive_v3/classes.rb', line 194

def new_start_page_token
  @new_start_page_token
end

#next_page_tokenString

The page token for the next page of changes. This will be absent if the end of the current changes list has been reached. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


200
201
202
# File 'generated/google/apis/drive_v3/classes.rb', line 200

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



207
208
209
210
211
212
# File 'generated/google/apis/drive_v3/classes.rb', line 207

def update!(**args)
  @changes = args[:changes] if args.key?(:changes)
  @kind = args[:kind] if args.key?(:kind)
  @new_start_page_token = args[:new_start_page_token] if args.key?(:new_start_page_token)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end