Class: Google::Apis::ClassroomV1::YouTubeVideo

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

YouTube video item.

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) ⇒ YouTubeVideo

Returns a new instance of YouTubeVideo.



320
321
322
# File 'generated/google/apis/classroom_v1/classes.rb', line 320

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

Instance Attribute Details

URL that can be used to view the YouTube video. Read-only. Corresponds to the JSON property alternateLink

Returns:

  • (String)


313
314
315
# File 'generated/google/apis/classroom_v1/classes.rb', line 313

def alternate_link
  @alternate_link
end

#idString

YouTube API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


303
304
305
# File 'generated/google/apis/classroom_v1/classes.rb', line 303

def id
  @id
end

#thumbnail_urlString

URL of a thumbnail image of the YouTube video. Read-only. Corresponds to the JSON property thumbnailUrl

Returns:

  • (String)


318
319
320
# File 'generated/google/apis/classroom_v1/classes.rb', line 318

def thumbnail_url
  @thumbnail_url
end

#titleString

Title of the YouTube video. Read-only. Corresponds to the JSON property title

Returns:

  • (String)


308
309
310
# File 'generated/google/apis/classroom_v1/classes.rb', line 308

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



325
326
327
328
329
330
# File 'generated/google/apis/classroom_v1/classes.rb', line 325

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)
  @thumbnail_url = args[:thumbnail_url] if args.key?(:thumbnail_url)
end