Class: Vellum::ExecutionNumberVellumValue
- Inherits:
-
Object
- Object
- Vellum::ExecutionNumberVellumValue
- Defined in:
- lib/vellum_ai/types/execution_number_vellum_value.rb
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
readonly
Returns the value of attribute additional_properties.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ ExecutionNumberVellumValue
Deserialize a JSON object to an instance of ExecutionNumberVellumValue.
-
.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(id:, name:, value: nil, additional_properties: nil) ⇒ ExecutionNumberVellumValue constructor
-
#to_json(*_args) ⇒ JSON
Serialize an instance of ExecutionNumberVellumValue to a JSON object.
Constructor Details
#initialize(id:, name:, value: nil, additional_properties: nil) ⇒ ExecutionNumberVellumValue
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/vellum_ai/types/execution_number_vellum_value.rb', line 14 def initialize(id:, name:, value: nil, additional_properties: nil) # @type [String] The variable's uniquely identifying internal id. @id = id # @type [String] @name = name # @type [Float] @value = value # @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/execution_number_vellum_value.rb', line 7 def additional_properties @additional_properties end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
7 8 9 |
# File 'lib/vellum_ai/types/execution_number_vellum_value.rb', line 7 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
7 8 9 |
# File 'lib/vellum_ai/types/execution_number_vellum_value.rb', line 7 def name @name end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
7 8 9 |
# File 'lib/vellum_ai/types/execution_number_vellum_value.rb', line 7 def value @value end |
Class Method Details
.from_json(json_object:) ⇒ ExecutionNumberVellumValue
Deserialize a JSON object to an instance of ExecutionNumberVellumValue
29 30 31 32 33 34 35 36 |
# File 'lib/vellum_ai/types/execution_number_vellum_value.rb', line 29 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) JSON.parse(json_object) id = struct.id name = struct.name value = struct.value new(id: id, name: name, 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.
49 50 51 52 53 |
# File 'lib/vellum_ai/types/execution_number_vellum_value.rb', line 49 def self.validate_raw(obj:) obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.") obj.name.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.") obj.value&.is_a?(Float) != 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 ExecutionNumberVellumValue to a JSON object
41 42 43 |
# File 'lib/vellum_ai/types/execution_number_vellum_value.rb', line 41 def to_json(*_args) { "id": @id, "name": @name, "value": @value }.to_json end |