Class: Google::Apis::ClassroomV1::DriveFolder

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

Overview

Representation of a Google Drive folder.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DriveFolder

Returns a new instance of DriveFolder.



820
821
822
# File 'generated/google/apis/classroom_v1/classes.rb', line 820

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

Instance Attribute Details

URL that can be used to access the Drive folder. Read-only. Corresponds to the JSON property alternateLink

Returns:

  • (String)


807
808
809
# File 'generated/google/apis/classroom_v1/classes.rb', line 807

def alternate_link
  @alternate_link
end

#idString

Drive API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


812
813
814
# File 'generated/google/apis/classroom_v1/classes.rb', line 812

def id
  @id
end

#titleString

Title of the Drive folder. Read-only. Corresponds to the JSON property title

Returns:

  • (String)


818
819
820
# File 'generated/google/apis/classroom_v1/classes.rb', line 818

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



825
826
827
828
829
# File 'generated/google/apis/classroom_v1/classes.rb', line 825

def update!(**args)
  @alternate_link = args[:alternate_link] if args.key?(:alternate_link)
  @id = args[:id] if args.key?(:id)
  @title = args[:title] if args.key?(:title)
end