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

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/classroom_v1/classes.rb,
lib/google/apis/classroom_v1/representations.rb,
lib/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.



1073
1074
1075
# File 'lib/google/apis/classroom_v1/classes.rb', line 1073

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)


1056
1057
1058
# File 'lib/google/apis/classroom_v1/classes.rb', line 1056

def alternate_link
  @alternate_link
end

#idString

Drive API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


1061
1062
1063
# File 'lib/google/apis/classroom_v1/classes.rb', line 1061

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)


1066
1067
1068
# File 'lib/google/apis/classroom_v1/classes.rb', line 1066

def thumbnail_url
  @thumbnail_url
end

#titleString

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

Returns:

  • (String)


1071
1072
1073
# File 'lib/google/apis/classroom_v1/classes.rb', line 1071

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1078
1079
1080
1081
1082
1083
# File 'lib/google/apis/classroom_v1/classes.rb', line 1078

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