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



971
972
973
# File 'generated/google/apis/classroom_v1/classes.rb', line 971

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)


969
970
971
# File 'generated/google/apis/classroom_v1/classes.rb', line 969

def alternate_link
  @alternate_link
end

#idString

Drive API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


957
958
959
# File 'generated/google/apis/classroom_v1/classes.rb', line 957

def id
  @id
end

#titleString

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

Returns:

  • (String)


963
964
965
# File 'generated/google/apis/classroom_v1/classes.rb', line 963

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



976
977
978
979
980
# File 'generated/google/apis/classroom_v1/classes.rb', line 976

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