Class: Google::Apis::ClassroomV1::DriveFolder
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::DriveFolder
- 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
-
#alternate_link ⇒ String
URL that can be used to access the Drive folder.
-
#id ⇒ String
Drive API resource ID.
-
#title ⇒ String
Title of the Drive folder.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DriveFolder
constructor
A new instance of DriveFolder.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ DriveFolder
Returns a new instance of DriveFolder
790 791 792 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 790 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alternate_link ⇒ String
URL that can be used to access the Drive folder.
Read-only.
Corresponds to the JSON property alternateLink
777 778 779 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 777 def alternate_link @alternate_link end |
#id ⇒ String
Drive API resource ID.
Corresponds to the JSON property id
782 783 784 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 782 def id @id end |
#title ⇒ String
Title of the Drive folder.
Read-only.
Corresponds to the JSON property title
788 789 790 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 788 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
795 796 797 798 799 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 795 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 |