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.



176
177
178
# File 'generated/google/apis/classroom_v1/classes.rb', line 176

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)


174
175
176
# File 'generated/google/apis/classroom_v1/classes.rb', line 174

def alternate_link
  @alternate_link
end

#idString

Drive API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


164
165
166
# File 'generated/google/apis/classroom_v1/classes.rb', line 164

def id
  @id
end

#titleString

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

Returns:

  • (String)


169
170
171
# File 'generated/google/apis/classroom_v1/classes.rb', line 169

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



181
182
183
184
185
# File 'generated/google/apis/classroom_v1/classes.rb', line 181

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