Class: Vellum::ConditionalNodeResultData
- Inherits:
-
Object
- Object
- Vellum::ConditionalNodeResultData
- Defined in:
- lib/vellum_ai/types/conditional_node_result_data.rb
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
readonly
Returns the value of attribute additional_properties.
-
#source_handle_id ⇒ Object
readonly
Returns the value of attribute source_handle_id.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ ConditionalNodeResultData
Deserialize a JSON object to an instance of ConditionalNodeResultData.
-
.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(source_handle_id: nil, additional_properties: nil) ⇒ ConditionalNodeResultData constructor
-
#to_json(*_args) ⇒ JSON
Serialize an instance of ConditionalNodeResultData to a JSON object.
Constructor Details
#initialize(source_handle_id: nil, additional_properties: nil) ⇒ ConditionalNodeResultData
12 13 14 15 16 17 |
# File 'lib/vellum_ai/types/conditional_node_result_data.rb', line 12 def initialize(source_handle_id: nil, additional_properties: nil) # @type [String] @source_handle_id = source_handle_id # @type [OpenStruct] Additional properties unmapped to the current class definition @additional_properties = additional_properties end |
Instance Attribute Details
#additional_properties ⇒ Object (readonly)
Returns the value of attribute additional_properties.
7 8 9 |
# File 'lib/vellum_ai/types/conditional_node_result_data.rb', line 7 def additional_properties @additional_properties end |
#source_handle_id ⇒ Object (readonly)
Returns the value of attribute source_handle_id.
7 8 9 |
# File 'lib/vellum_ai/types/conditional_node_result_data.rb', line 7 def source_handle_id @source_handle_id end |
Class Method Details
.from_json(json_object:) ⇒ ConditionalNodeResultData
Deserialize a JSON object to an instance of ConditionalNodeResultData
23 24 25 26 27 28 |
# File 'lib/vellum_ai/types/conditional_node_result_data.rb', line 23 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) JSON.parse(json_object) source_handle_id = struct.source_handle_id new(source_handle_id: source_handle_id, 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.
41 42 43 |
# File 'lib/vellum_ai/types/conditional_node_result_data.rb', line 41 def self.validate_raw(obj:) obj.source_handle_id&.is_a?(String) != false || raise("Passed value for field obj.source_handle_id is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ JSON
Serialize an instance of ConditionalNodeResultData to a JSON object
33 34 35 |
# File 'lib/vellum_ai/types/conditional_node_result_data.rb', line 33 def to_json(*_args) { "source_handle_id": @source_handle_id }.to_json end |