Class: Google::Apis::ClassroomV1::DriveFile

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 file.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DriveFile

Returns a new instance of DriveFile.



836
837
838
# File 'generated/google/apis/classroom_v1/classes.rb', line 836

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

URL that can be used to access the Drive item. Read-only. Corresponds to the JSON property alternateLink

Returns:

  • (String)


819
820
821
# File 'generated/google/apis/classroom_v1/classes.rb', line 819

def alternate_link
  @alternate_link
end

#idString

Drive API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


824
825
826
# File 'generated/google/apis/classroom_v1/classes.rb', line 824

def id
  @id
end

#thumbnail_urlString

URL of a thumbnail image of the Drive item. Read-only. Corresponds to the JSON property thumbnailUrl

Returns:

  • (String)


829
830
831
# File 'generated/google/apis/classroom_v1/classes.rb', line 829

def thumbnail_url
  @thumbnail_url
end

#titleString

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

Returns:

  • (String)


834
835
836
# File 'generated/google/apis/classroom_v1/classes.rb', line 834

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



841
842
843
844
845
846
# File 'generated/google/apis/classroom_v1/classes.rb', line 841

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