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

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

YouTube video item.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ YouTubeVideo

Returns a new instance of YouTubeVideo.



2367
2368
2369
# File 'lib/google/apis/classroom_v1/classes.rb', line 2367

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)


2350
2351
2352
# File 'lib/google/apis/classroom_v1/classes.rb', line 2350

def alternate_link
  @alternate_link
end

#idString

YouTube API resource ID. Corresponds to the JSON property id

Returns:

  • (String)


2355
2356
2357
# File 'lib/google/apis/classroom_v1/classes.rb', line 2355

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)


2360
2361
2362
# File 'lib/google/apis/classroom_v1/classes.rb', line 2360

def thumbnail_url
  @thumbnail_url
end

#titleString

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

Returns:

  • (String)


2365
2366
2367
# File 'lib/google/apis/classroom_v1/classes.rb', line 2365

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2372
2373
2374
2375
2376
2377
# File 'lib/google/apis/classroom_v1/classes.rb', line 2372

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