Class: Google::Apis::YoutubeV3::LiveBroadcast
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::LiveBroadcast
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
 generated/google/apis/youtube_v3/representations.rb,
 generated/google/apis/youtube_v3/representations.rb
Overview
A liveBroadcast resource represents an event that will be streamed, via live video, on YouTube.
Instance Attribute Summary collapse
- 
  
    
      #content_details  ⇒ Google::Apis::YoutubeV3::LiveBroadcastContentDetails 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Detailed settings of a broadcast. 
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Etag of this resource. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID that YouTube assigns to uniquely identify the broadcast. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #snippet  ⇒ Google::Apis::YoutubeV3::LiveBroadcastSnippet 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The snippet object contains basic details about the event, including its title, description, start time, and end time. 
- 
  
    
      #statistics  ⇒ Google::Apis::YoutubeV3::LiveBroadcastStatistics 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Statistics about the live broadcast. 
- 
  
    
      #status  ⇒ Google::Apis::YoutubeV3::LiveBroadcastStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status object contains information about the event's status. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LiveBroadcast 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LiveBroadcast. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveBroadcast
Returns a new instance of LiveBroadcast
| 3550 3551 3552 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3550 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#content_details ⇒ Google::Apis::YoutubeV3::LiveBroadcastContentDetails
Detailed settings of a broadcast.
Corresponds to the JSON property contentDetails
| 3515 3516 3517 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3515 def content_details @content_details end | 
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
| 3520 3521 3522 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3520 def etag @etag end | 
#id ⇒ String
The ID that YouTube assigns to uniquely identify the broadcast.
Corresponds to the JSON property id
| 3525 3526 3527 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3525 def id @id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
liveBroadcast".
Corresponds to the JSON property kind
| 3531 3532 3533 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3531 def kind @kind end | 
#snippet ⇒ Google::Apis::YoutubeV3::LiveBroadcastSnippet
The snippet object contains basic details about the event, including its title,
description, start time, and end time.
Corresponds to the JSON property snippet
| 3537 3538 3539 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3537 def snippet @snippet end | 
#statistics ⇒ Google::Apis::YoutubeV3::LiveBroadcastStatistics
Statistics about the live broadcast. These represent a snapshot of the values
at the time of the request. Statistics are only returned for live broadcasts.
Corresponds to the JSON property statistics
| 3543 3544 3545 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3543 def statistics @statistics end | 
#status ⇒ Google::Apis::YoutubeV3::LiveBroadcastStatus
The status object contains information about the event's status.
Corresponds to the JSON property status
| 3548 3549 3550 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3548 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3555 3556 3557 3558 3559 3560 3561 3562 3563 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3555 def update!(**args) @content_details = args[:content_details] if args.key?(:content_details) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @snippet = args[:snippet] if args.key?(:snippet) @statistics = args[:statistics] if args.key?(:statistics) @status = args[:status] if args.key?(:status) end |