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

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DriveFile

Returns a new instance of DriveFile



1504
1505
1506
# File 'generated/google/apis/classroom_v1/classes.rb', line 1504

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)


1485
1486
1487
# File 'generated/google/apis/classroom_v1/classes.rb', line 1485

def alternate_link
  @alternate_link
end

#idString

Drive API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


1496
1497
1498
# File 'generated/google/apis/classroom_v1/classes.rb', line 1496

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)


1491
1492
1493
# File 'generated/google/apis/classroom_v1/classes.rb', line 1491

def thumbnail_url
  @thumbnail_url
end

#titleString

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

Returns:

  • (String)


1502
1503
1504
# File 'generated/google/apis/classroom_v1/classes.rb', line 1502

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1509
1510
1511
1512
1513
1514
# File 'generated/google/apis/classroom_v1/classes.rb', line 1509

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