Class: Vellum::RejectedFunctionCall
- Inherits:
-
Object
- Object
- Vellum::RejectedFunctionCall
- Defined in:
- lib/vellum_ai/types/rejected_function_call.rb
Overview
Returned if the function call failed to parse for some reason.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
readonly
Returns the value of attribute additional_properties.
-
#error ⇒ Object
readonly
Returns the value of attribute error.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ RejectedFunctionCall
Deserialize a JSON object to an instance of RejectedFunctionCall.
-
.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(error:, name:, id: nil, additional_properties: nil) ⇒ RejectedFunctionCall constructor
-
#to_json(*_args) ⇒ JSON
Serialize an instance of RejectedFunctionCall to a JSON object.
Constructor Details
#initialize(error:, name:, id: nil, additional_properties: nil) ⇒ RejectedFunctionCall
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 16 def initialize(error:, name:, id: nil, additional_properties: nil) # @type [VellumError] @error = error # @type [String] @id = id # @type [String] @name = name # @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.
9 10 11 |
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 9 def additional_properties @additional_properties end |
#error ⇒ Object (readonly)
Returns the value of attribute error.
9 10 11 |
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 9 def error @error end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
9 10 11 |
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 9 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
9 10 11 |
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 9 def name @name end |
Class Method Details
.from_json(json_object:) ⇒ RejectedFunctionCall
Deserialize a JSON object to an instance of RejectedFunctionCall
31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 31 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) if parsed_json["error"].nil? error = nil else error = parsed_json["error"].to_json error = VellumError.from_json(json_object: error) end id = struct.id name = struct.name new(error: error, id: id, name: name, 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.
56 57 58 59 60 |
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 56 def self.validate_raw(obj:) VellumError.validate_raw(obj: obj.error) 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.") end |
Instance Method Details
#to_json(*_args) ⇒ JSON
Serialize an instance of RejectedFunctionCall to a JSON object
48 49 50 |
# File 'lib/vellum_ai/types/rejected_function_call.rb', line 48 def to_json(*_args) { "error": @error, "id": @id, "name": @name }.to_json end |