Class: Google::Apis::DriveV2::AppList

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

Overview

A list of third-party applications which the user has installed or given access to Google Drive.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppList

Returns a new instance of AppList.



695
696
697
# File 'generated/google/apis/drive_v2/classes.rb', line 695

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

Instance Attribute Details

#default_app_idsArray<String>

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

Returns:

  • (Array<String>)


673
674
675
# File 'generated/google/apis/drive_v2/classes.rb', line 673

def default_app_ids
  @default_app_ids
end

#etagString

The ETag of the list. Corresponds to the JSON property etag

Returns:

  • (String)


678
679
680
# File 'generated/google/apis/drive_v2/classes.rb', line 678

def etag
  @etag
end

#itemsArray<Google::Apis::DriveV2::App>

The list of apps. Corresponds to the JSON property items

Returns:



683
684
685
# File 'generated/google/apis/drive_v2/classes.rb', line 683

def items
  @items
end

#kindString

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

Returns:

  • (String)


688
689
690
# File 'generated/google/apis/drive_v2/classes.rb', line 688

def kind
  @kind
end

A link back to this list. Corresponds to the JSON property selfLink

Returns:

  • (String)


693
694
695
# File 'generated/google/apis/drive_v2/classes.rb', line 693

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



700
701
702
703
704
705
706
# File 'generated/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