Class: Vellum::ExecuteWorkflowErrorResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/vellum_ai/types/execute_workflow_error_response.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(detail:, additional_properties: nil) ⇒ ExecuteWorkflowErrorResponse

Parameters:

  • detail (String)

    Details about why the request failed.

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



12
13
14
15
16
17
# File 'lib/vellum_ai/types/execute_workflow_error_response.rb', line 12

def initialize(detail:, additional_properties: nil)
  # @type [String] Details about why the request failed.
  @detail = detail
  # @type [OpenStruct] Additional properties unmapped to the current class definition
  @additional_properties = additional_properties
end

Instance Attribute Details

#additional_propertiesObject (readonly)

Returns the value of attribute additional_properties.



7
8
9
# File 'lib/vellum_ai/types/execute_workflow_error_response.rb', line 7

def additional_properties
  @additional_properties
end

#detailObject (readonly)

Returns the value of attribute detail.



7
8
9
# File 'lib/vellum_ai/types/execute_workflow_error_response.rb', line 7

def detail
  @detail
end

Class Method Details

.from_json(json_object:) ⇒ ExecuteWorkflowErrorResponse

Deserialize a JSON object to an instance of ExecuteWorkflowErrorResponse

Parameters:

  • json_object (JSON)

Returns:



23
24
25
26
27
28
# File 'lib/vellum_ai/types/execute_workflow_error_response.rb', line 23

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  JSON.parse(json_object)
  detail = struct.detail
  new(detail: detail, 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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


41
42
43
# File 'lib/vellum_ai/types/execute_workflow_error_response.rb', line 41

def self.validate_raw(obj:)
  obj.detail.is_a?(String) != false || raise("Passed value for field obj.detail is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ JSON

Serialize an instance of ExecuteWorkflowErrorResponse to a JSON object

Returns:

  • (JSON)


33
34
35
# File 'lib/vellum_ai/types/execute_workflow_error_response.rb', line 33

def to_json(*_args)
  { "detail": @detail }.to_json
end