Class: Google::Apis::YoutubeV3::LiveBroadcast
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LiveBroadcast
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/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.
-
#monetization_details ⇒ Google::Apis::YoutubeV3::LiveBroadcastMonetizationDetails
Monetization settings of a broadcast.
-
#snippet ⇒ Google::Apis::YoutubeV3::LiveBroadcastSnippet
Basic broadcast information.
-
#statistics ⇒ Google::Apis::YoutubeV3::LiveBroadcastStatistics
Statistics about the live broadcast.
-
#status ⇒ Google::Apis::YoutubeV3::LiveBroadcastStatus
Live broadcast state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LiveBroadcast
constructor
A new instance of LiveBroadcast.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LiveBroadcast
Returns a new instance of LiveBroadcast.
3740 3741 3742 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3740 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
3701 3702 3703 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3701 def content_details @content_details end |
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
3706 3707 3708 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3706 def etag @etag end |
#id ⇒ String
The ID that YouTube assigns to uniquely identify the broadcast.
Corresponds to the JSON property id
3711 3712 3713 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3711 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
3717 3718 3719 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3717 def kind @kind end |
#monetization_details ⇒ Google::Apis::YoutubeV3::LiveBroadcastMonetizationDetails
Monetization settings of a broadcast.
Corresponds to the JSON property monetizationDetails
3722 3723 3724 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3722 def monetization_details @monetization_details end |
#snippet ⇒ Google::Apis::YoutubeV3::LiveBroadcastSnippet
Basic broadcast information.
Corresponds to the JSON property snippet
3727 3728 3729 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3727 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
3733 3734 3735 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3733 def statistics @statistics end |
#status ⇒ Google::Apis::YoutubeV3::LiveBroadcastStatus
Live broadcast state.
Corresponds to the JSON property status
3738 3739 3740 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3738 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 3745 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) @monetization_details = args[:monetization_details] if args.key?(:monetization_details) @snippet = args[:snippet] if args.key?(:snippet) @statistics = args[:statistics] if args.key?(:statistics) @status = args[:status] if args.key?(:status) end |