Class: Vellum::NodeExecutionSpanAttributes
- Inherits:
-
Object
- Object
- Vellum::NodeExecutionSpanAttributes
- Defined in:
- lib/vellum_ai/types/node_execution_span_attributes.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #filepath ⇒ String readonly
- #label ⇒ String readonly
- #node_id ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(label:, filepath: OMIT, node_id:, additional_properties: nil) ⇒ Vellum::NodeExecutionSpanAttributes constructor
- #to_json ⇒ String
Constructor Details
#initialize(label:, filepath: OMIT, node_id:, additional_properties: nil) ⇒ Vellum::NodeExecutionSpanAttributes
26 27 28 29 30 31 32 33 34 |
# File 'lib/vellum_ai/types/node_execution_span_attributes.rb', line 26 def initialize(label:, filepath: OMIT, node_id:, additional_properties: nil) @label = label @filepath = filepath if filepath != OMIT @node_id = node_id @additional_properties = additional_properties @_field_set = { "label": label, "filepath": filepath, "node_id": node_id }.reject do | _k, v | v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
14 15 16 |
# File 'lib/vellum_ai/types/node_execution_span_attributes.rb', line 14 def additional_properties @additional_properties end |
#filepath ⇒ String (readonly)
10 11 12 |
# File 'lib/vellum_ai/types/node_execution_span_attributes.rb', line 10 def filepath @filepath end |
#label ⇒ String (readonly)
8 9 10 |
# File 'lib/vellum_ai/types/node_execution_span_attributes.rb', line 8 def label @label end |
#node_id ⇒ String (readonly)
12 13 14 |
# File 'lib/vellum_ai/types/node_execution_span_attributes.rb', line 12 def node_id @node_id end |
Class Method Details
.from_json(json_object:) ⇒ Vellum::NodeExecutionSpanAttributes
39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/vellum_ai/types/node_execution_span_attributes.rb', line 39 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) label = parsed_json["label"] filepath = parsed_json["filepath"] node_id = parsed_json["node_id"] new( label: label, filepath: filepath, node_id: node_id, additional_properties: struct ) end |
.validate_raw(obj:) ⇒ Void
64 65 66 67 68 |
# File 'lib/vellum_ai/types/node_execution_span_attributes.rb', line 64 def self.validate_raw(obj:) obj.label.is_a?(String) != false || raise("Passed value for field obj.label is not the expected type, validation failed.") obj.filepath&.is_a?(String) != false || raise("Passed value for field obj.filepath is not the expected type, validation failed.") obj.node_id.is_a?(String) != false || raise("Passed value for field obj.node_id is not the expected type, validation failed.") end |
Instance Method Details
#to_json ⇒ String
55 56 57 |
# File 'lib/vellum_ai/types/node_execution_span_attributes.rb', line 55 def to_json @_field_set&.to_json end |