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