Class: Google::Apis::ClassroomV1::YouTubeVideo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClassroomV1::YouTubeVideo
 
- 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
- 
  
    
      #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. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ YouTubeVideo
Returns a new instance of YouTubeVideo
| 2146 2147 2148 | # File 'generated/google/apis/classroom_v1/classes.rb', line 2146 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
| 2127 2128 2129 | # File 'generated/google/apis/classroom_v1/classes.rb', line 2127 def alternate_link @alternate_link end | 
#id ⇒ String
YouTube API resource ID.
Corresponds to the JSON property id
| 2132 2133 2134 | # File 'generated/google/apis/classroom_v1/classes.rb', line 2132 def id @id end | 
#thumbnail_url ⇒ String
URL of a thumbnail image of the YouTube video.
Read-only.
Corresponds to the JSON property thumbnailUrl
| 2138 2139 2140 | # File 'generated/google/apis/classroom_v1/classes.rb', line 2138 def thumbnail_url @thumbnail_url end | 
#title ⇒ String
Title of the YouTube video.
Read-only.
Corresponds to the JSON property title
| 2144 2145 2146 | # File 'generated/google/apis/classroom_v1/classes.rb', line 2144 def title @title end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2151 2152 2153 2154 2155 2156 | # File 'generated/google/apis/classroom_v1/classes.rb', line 2151 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 |