Class: Vellum::NodeInputCompiledStringValue

Inherits:
Object
  • Object
show all
Defined in:
lib/vellum_ai/types/node_input_compiled_string_value.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node_input_id:, key:, value: nil, additional_properties: nil) ⇒ NodeInputCompiledStringValue

Parameters:

  • node_input_id (String)
  • key (String)
  • value (String) (defaults to: nil)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



14
15
16
17
18
19
20
21
22
23
# File 'lib/vellum_ai/types/node_input_compiled_string_value.rb', line 14

def initialize(node_input_id:, key:, value: nil, additional_properties: nil)
  # @type [String]
  @node_input_id = node_input_id
  # @type [String]
  @key = key
  # @type [String]
  @value = value
  # @type [OpenStruct] Additional properties unmapped to the current class definition
  @additional_properties = additional_properties
end

Instance Attribute Details

#additional_propertiesObject (readonly)

Returns the value of attribute additional_properties.



7
8
9
# File 'lib/vellum_ai/types/node_input_compiled_string_value.rb', line 7

def additional_properties
  @additional_properties
end

#keyObject (readonly)

Returns the value of attribute key.



7
8
9
# File 'lib/vellum_ai/types/node_input_compiled_string_value.rb', line 7

def key
  @key
end

#node_input_idObject (readonly)

Returns the value of attribute node_input_id.



7
8
9
# File 'lib/vellum_ai/types/node_input_compiled_string_value.rb', line 7

def node_input_id
  @node_input_id
end

#valueObject (readonly)

Returns the value of attribute value.



7
8
9
# File 'lib/vellum_ai/types/node_input_compiled_string_value.rb', line 7

def value
  @value
end

Class Method Details

.from_json(json_object:) ⇒ NodeInputCompiledStringValue

Deserialize a JSON object to an instance of NodeInputCompiledStringValue

Parameters:

  • json_object (JSON)

Returns:



29
30
31
32
33
34
35
36
# File 'lib/vellum_ai/types/node_input_compiled_string_value.rb', line 29

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  JSON.parse(json_object)
  node_input_id = struct.node_input_id
  key = struct.key
  value = struct.value
  new(node_input_id: node_input_id, key: key, value: value, 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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


49
50
51
52
53
# File 'lib/vellum_ai/types/node_input_compiled_string_value.rb', line 49

def self.validate_raw(obj:)
  obj.node_input_id.is_a?(String) != false || raise("Passed value for field obj.node_input_id is not the expected type, validation failed.")
  obj.key.is_a?(String) != false || raise("Passed value for field obj.key is not the expected type, validation failed.")
  obj.value&.is_a?(String) != false || raise("Passed value for field obj.value is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ JSON

Serialize an instance of NodeInputCompiledStringValue to a JSON object

Returns:

  • (JSON)


41
42
43
# File 'lib/vellum_ai/types/node_input_compiled_string_value.rb', line 41

def to_json(*_args)
  { "node_input_id": @node_input_id, "key": @key, "value": @value }.to_json
end