Class: AssemblyAI::Realtime::RealtimeError
- Inherits:
-
Object
- Object
- AssemblyAI::Realtime::RealtimeError
- Defined in:
- lib/assemblyai/realtime/types/realtime_error.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #error ⇒ String readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ AssemblyAI::Realtime::RealtimeError
Deserialize a JSON object to an instance of RealtimeError.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(error:, additional_properties: nil) ⇒ AssemblyAI::Realtime::RealtimeError constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of RealtimeError to a JSON object.
Constructor Details
#initialize(error:, additional_properties: nil) ⇒ AssemblyAI::Realtime::RealtimeError
22 23 24 25 26 |
# File 'lib/assemblyai/realtime/types/realtime_error.rb', line 22 def initialize(error:, additional_properties: nil) @error = error @additional_properties = additional_properties @_field_set = { "error": error } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
12 13 14 |
# File 'lib/assemblyai/realtime/types/realtime_error.rb', line 12 def additional_properties @additional_properties end |
#error ⇒ String (readonly)
10 11 12 |
# File 'lib/assemblyai/realtime/types/realtime_error.rb', line 10 def error @error end |
Class Method Details
.from_json(json_object:) ⇒ AssemblyAI::Realtime::RealtimeError
Deserialize a JSON object to an instance of RealtimeError
32 33 34 35 36 |
# File 'lib/assemblyai/realtime/types/realtime_error.rb', line 32 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) error = struct["error"] new(error: error, additional_properties: struct) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
51 52 53 |
# File 'lib/assemblyai/realtime/types/realtime_error.rb', line 51 def self.validate_raw(obj:) obj.error.is_a?(String) != false || raise("Passed value for field obj.error is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of RealtimeError to a JSON object
41 42 43 |
# File 'lib/assemblyai/realtime/types/realtime_error.rb', line 41 def to_json(*_args) @_field_set&.to_json end |