Class: Google::Apis::YoutubeV3::LiveStreamConfigurationIssue
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LiveStreamConfigurationIssue
- 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
Instance Attribute Summary collapse
-
#description ⇒ String
The long-form description of the issue and how to resolve it.
-
#reason ⇒ String
The short-form reason for this issue.
-
#severity ⇒ String
How severe this issue is to the stream.
-
#type ⇒ String
The kind of error happening.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LiveStreamConfigurationIssue
constructor
A new instance of LiveStreamConfigurationIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveStreamConfigurationIssue
Returns a new instance of LiveStreamConfigurationIssue
5017 5018 5019 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5017 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
The long-form description of the issue and how to resolve it.
Corresponds to the JSON property description
5000 5001 5002 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5000 def description @description end |
#reason ⇒ String
The short-form reason for this issue.
Corresponds to the JSON property reason
5005 5006 5007 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5005 def reason @reason end |
#severity ⇒ String
How severe this issue is to the stream.
Corresponds to the JSON property severity
5010 5011 5012 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5010 def severity @severity end |
#type ⇒ String
The kind of error happening.
Corresponds to the JSON property type
5015 5016 5017 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5015 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5022 5023 5024 5025 5026 5027 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5022 def update!(**args) @description = args[:description] if args.key?(:description) @reason = args[:reason] if args.key?(:reason) @severity = args[:severity] if args.key?(:severity) @type = args[:type] if args.key?(:type) end |