Class: Vellum::MetricNodeResult
- Inherits:
-
Object
- Object
- Vellum::MetricNodeResult
- Defined in:
- lib/vellum_ai/types/metric_node_result.rb
Overview
A Node Result Event emitted from a Metric Node.
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #type ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(type:, additional_properties: nil) ⇒ Vellum::MetricNodeResult constructor
- #to_json ⇒ String
Constructor Details
#initialize(type:, additional_properties: nil) ⇒ Vellum::MetricNodeResult
21 22 23 24 25 |
# File 'lib/vellum_ai/types/metric_node_result.rb', line 21 def initialize(type:, additional_properties: nil) @type = type @additional_properties = additional_properties @_field_set = { "type": type } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
11 12 13 |
# File 'lib/vellum_ai/types/metric_node_result.rb', line 11 def additional_properties @additional_properties end |
#type ⇒ String (readonly)
9 10 11 |
# File 'lib/vellum_ai/types/metric_node_result.rb', line 9 def type @type end |
Class Method Details
.from_json(json_object:) ⇒ Vellum::MetricNodeResult
30 31 32 33 34 35 |
# File 'lib/vellum_ai/types/metric_node_result.rb', line 30 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) type = parsed_json["type"] new(type: type, additional_properties: struct) end |
.validate_raw(obj:) ⇒ Void
48 49 50 |
# File 'lib/vellum_ai/types/metric_node_result.rb', line 48 def self.validate_raw(obj:) obj.type.is_a?(String) != false || raise("Passed value for field obj.type is not the expected type, validation failed.") end |
Instance Method Details
#to_json ⇒ String
39 40 41 |
# File 'lib/vellum_ai/types/metric_node_result.rb', line 39 def to_json @_field_set&.to_json end |