Class: AssemblyAI::Lemur::LemurQuestionAnswer
- Inherits:
-
Object
- Object
- AssemblyAI::Lemur::LemurQuestionAnswer
- Defined in:
- lib/assemblyai/lemur/types/lemur_question_answer.rb
Overview
An answer generated by LeMUR and its question
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#answer ⇒ String
readonly
The answer generated by LeMUR.
-
#question ⇒ String
readonly
The question for LeMUR to answer.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ AssemblyAI::Lemur::LemurQuestionAnswer
Deserialize a JSON object to an instance of LemurQuestionAnswer.
-
.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(question:, answer:, additional_properties: nil) ⇒ AssemblyAI::Lemur::LemurQuestionAnswer constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of LemurQuestionAnswer to a JSON object.
Constructor Details
#initialize(question:, answer:, additional_properties: nil) ⇒ AssemblyAI::Lemur::LemurQuestionAnswer
26 27 28 29 30 31 |
# File 'lib/assemblyai/lemur/types/lemur_question_answer.rb', line 26 def initialize(question:, answer:, additional_properties: nil) @question = question @answer = answer @additional_properties = additional_properties @_field_set = { "question": question, "answer": answer } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
15 16 17 |
# File 'lib/assemblyai/lemur/types/lemur_question_answer.rb', line 15 def additional_properties @additional_properties end |
#answer ⇒ String (readonly)
Returns The answer generated by LeMUR.
13 14 15 |
# File 'lib/assemblyai/lemur/types/lemur_question_answer.rb', line 13 def answer @answer end |
#question ⇒ String (readonly)
Returns The question for LeMUR to answer.
11 12 13 |
# File 'lib/assemblyai/lemur/types/lemur_question_answer.rb', line 11 def question @question end |
Class Method Details
.from_json(json_object:) ⇒ AssemblyAI::Lemur::LemurQuestionAnswer
Deserialize a JSON object to an instance of LemurQuestionAnswer
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/assemblyai/lemur/types/lemur_question_answer.rb', line 37 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) question = struct["question"] answer = struct["answer"] new( question: question, answer: answer, 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.
61 62 63 64 |
# File 'lib/assemblyai/lemur/types/lemur_question_answer.rb', line 61 def self.validate_raw(obj:) obj.question.is_a?(String) != false || raise("Passed value for field obj.question is not the expected type, validation failed.") obj.answer.is_a?(String) != false || raise("Passed value for field obj.answer is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of LemurQuestionAnswer to a JSON object
51 52 53 |
# File 'lib/assemblyai/lemur/types/lemur_question_answer.rb', line 51 def to_json(*_args) @_field_set&.to_json end |