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

Constructor Details

#initialize(**args) ⇒ DriveFolder

Returns a new instance of DriveFolder.



868
869
870
# File 'generated/google/apis/classroom_v1/classes.rb', line 868

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)


856
857
858
# File 'generated/google/apis/classroom_v1/classes.rb', line 856

def alternate_link
  @alternate_link
end

#idString

Drive API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


861
862
863
# File 'generated/google/apis/classroom_v1/classes.rb', line 861

def id
  @id
end

#titleString

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

Returns:

  • (String)


866
867
868
# File 'generated/google/apis/classroom_v1/classes.rb', line 866

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



873
874
875
876
877
# File 'generated/google/apis/classroom_v1/classes.rb', line 873

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