Class: Google::Apis::DriveV3::ChangeList
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::ChangeList
- 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
-
#changes ⇒ Array<Google::Apis::DriveV3::Change>
The list of changes.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#new_start_page_token ⇒ String
The starting page token for future changes.
-
#next_page_token ⇒ String
The page token for the next page of changes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChangeList
constructor
A new instance of ChangeList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChangeList
Returns a new instance of ChangeList.
332 333 334 |
# File 'generated/google/apis/drive_v3/classes.rb', line 332 def initialize(**args) update!(**args) end |
Instance Attribute Details
#changes ⇒ Array<Google::Apis::DriveV3::Change>
The list of changes. If nextPageToken is populated, then this list may be
incomplete and an additional page of results should be fetched.
Corresponds to the JSON property changes
310 311 312 |
# File 'generated/google/apis/drive_v3/classes.rb', line 310 def changes @changes end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "drive#
changeList".
Corresponds to the JSON property kind
316 317 318 |
# File 'generated/google/apis/drive_v3/classes.rb', line 316 def kind @kind end |
#new_start_page_token ⇒ String
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
322 323 324 |
# File 'generated/google/apis/drive_v3/classes.rb', line 322 def new_start_page_token @new_start_page_token end |
#next_page_token ⇒ String
The page token for the next page of changes. This will be absent if the end of
the changes list has been reached. If the token is rejected for any reason, it
should be discarded, and pagination should be restarted from the first page of
results.
Corresponds to the JSON property nextPageToken
330 331 332 |
# File 'generated/google/apis/drive_v3/classes.rb', line 330 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
337 338 339 340 341 342 |
# File 'generated/google/apis/drive_v3/classes.rb', line 337 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 |