Class: Google::Apis::ClassroomV1::YouTubeVideo
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::YouTubeVideo
- 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
-
#alternate_link ⇒ String
URL that can be used to view the YouTube video.
-
#id ⇒ String
YouTube API resource ID.
-
#thumbnail_url ⇒ String
URL of a thumbnail image of the YouTube video.
-
#title ⇒ String
Title of the YouTube video.
Instance Method Summary collapse
-
#initialize(**args) ⇒ YouTubeVideo
constructor
A new instance of YouTubeVideo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ YouTubeVideo
Returns a new instance of YouTubeVideo.
2669 2670 2671 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 2669 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alternate_link ⇒ String
URL that can be used to view the YouTube video. Read-only.
Corresponds to the JSON property alternateLink
2652 2653 2654 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 2652 def alternate_link @alternate_link end |
#id ⇒ String
YouTube API resource ID.
Corresponds to the JSON property id
2657 2658 2659 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 2657 def id @id end |
#thumbnail_url ⇒ String
URL of a thumbnail image of the YouTube video. Read-only.
Corresponds to the JSON property thumbnailUrl
2662 2663 2664 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 2662 def thumbnail_url @thumbnail_url end |
#title ⇒ String
Title of the YouTube video. Read-only.
Corresponds to the JSON property title
2667 2668 2669 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 2667 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2674 2675 2676 2677 2678 2679 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 2674 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 |