class Google::Apis::DriveV2::AppList
A list of third-party applications which the user has installed or given access to Google Drive.
Attributes
default_app_ids[RW]
List of app IDs that the user has specified to use by default. The list is in reverse-priority order (lowest to highest). Corresponds to the JSON property `defaultAppIds` @return [Array<String>]
etag[RW]
The ETag of the list. Corresponds to the JSON property `etag` @return [String]
items[RW]
The actual list of apps. Corresponds to the JSON property `items` @return [Array<Google::Apis::DriveV2::App>]
kind[RW]
This is always drive#appList. Corresponds to the JSON property `kind` @return [String]
self_link[RW]
A link back to this list. Corresponds to the JSON property `selfLink` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/drive_v2/classes.rb, line 606 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/drive_v2/classes.rb, line 611 def update!(**args) @default_app_ids = args[:default_app_ids] if args.key?(:default_app_ids) @etag = args[:etag] if args.key?(:etag) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @self_link = args[:self_link] if args.key?(:self_link) end