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 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]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/drive_v2/classes.rb, line 695
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_v2/classes.rb, line 700
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