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
813 814 815 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 813 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
800 801 802 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 800 def alternate_link @alternate_link end |
#id ⇒ String
Drive API resource ID.
Corresponds to the JSON property id
805 806 807 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 805 def id @id end |
#title ⇒ String
Title of the Drive folder.
Read-only.
Corresponds to the JSON property title
811 812 813 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 811 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
818 819 820 821 822 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 818 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 |