class Google::Apis::YoutubeV3::LiveStreamConfigurationIssue
Attributes
description[RW]
The long-form description of the issue and how to resolve it. Corresponds to the JSON property `description` @return [String]
reason[RW]
The short-form reason for this issue. Corresponds to the JSON property `reason` @return [String]
severity[RW]
How severe this issue is to the stream. Corresponds to the JSON property `severity` @return [String]
type[RW]
The kind of error happening. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 4825 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_v3/classes.rb, line 4830 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