Class: Google::Apis::YoutubeV3::LiveStreamStatus
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LiveStreamStatus
- 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
Brief description of the live stream status.
Instance Attribute Summary collapse
-
#health_status ⇒ Google::Apis::YoutubeV3::LiveStreamHealthStatus
The health status of the stream.
-
#stream_status ⇒ String
Corresponds to the JSON property
streamStatus.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LiveStreamStatus
constructor
A new instance of LiveStreamStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LiveStreamStatus
Returns a new instance of LiveStreamStatus.
5185 5186 5187 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#health_status ⇒ Google::Apis::YoutubeV3::LiveStreamHealthStatus
The health status of the stream.
Corresponds to the JSON property healthStatus
5178 5179 5180 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5178 def health_status @health_status end |
#stream_status ⇒ String
Corresponds to the JSON property streamStatus
5183 5184 5185 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5183 def stream_status @stream_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5190 5191 5192 5193 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5190 def update!(**args) @health_status = args[:health_status] if args.key?(:health_status) @stream_status = args[:stream_status] if args.key?(:stream_status) end |