Method: AssemblyAI::Lemur::LemurResponse.validate_raw

Defined in:
lib/assemblyai/lemur/types/lemur_response.rb

.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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/assemblyai/lemur/types/lemur_response.rb', line 43

def self.validate_raw(obj:)
  begin
    return AssemblyAI::Lemur::LemurStringResponse.validate_raw(obj: obj)
  rescue StandardError
    # noop
  end
  begin
    return AssemblyAI::Lemur::LemurQuestionAnswerResponse.validate_raw(obj: obj)
  rescue StandardError
    # noop
  end
  raise("Passed value matched no type within the union, validation failed.")
end