Class: Vellum::WorkflowExecutionResumedBody

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

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(workflow_definition:, additional_properties: nil) ⇒ Vellum::WorkflowExecutionResumedBody

Parameters:

  • workflow_definition (Vellum::VellumCodeResourceDefinition)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



21
22
23
24
25
# File 'lib/vellum_ai/types/workflow_execution_resumed_body.rb', line 21

def initialize(workflow_definition:, additional_properties: nil)
  @workflow_definition = workflow_definition
  @additional_properties = additional_properties
  @_field_set = { "workflow_definition": workflow_definition }
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



11
12
13
# File 'lib/vellum_ai/types/workflow_execution_resumed_body.rb', line 11

def additional_properties
  @additional_properties
end

#workflow_definitionVellum::VellumCodeResourceDefinition (readonly)



9
10
11
# File 'lib/vellum_ai/types/workflow_execution_resumed_body.rb', line 9

def workflow_definition
  @workflow_definition
end

Class Method Details

.from_json(json_object:) ⇒ Vellum::WorkflowExecutionResumedBody

Parameters:

  • json_object (String)

Returns:



30
31
32
33
34
35
36
37
38
39
40
# File 'lib/vellum_ai/types/workflow_execution_resumed_body.rb', line 30

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  unless parsed_json["workflow_definition"].nil?
    workflow_definition = parsed_json["workflow_definition"].to_json
    workflow_definition = Vellum::VellumCodeResourceDefinition.from_json(json_object: workflow_definition)
  else
    workflow_definition = nil
  end
  new(workflow_definition: workflow_definition, additional_properties: struct)
end

.validate_raw(obj:) ⇒ Void

Parameters:

  • obj (Object)

Returns:

  • (Void)


53
54
55
# File 'lib/vellum_ai/types/workflow_execution_resumed_body.rb', line 53

def self.validate_raw(obj:)
  Vellum::VellumCodeResourceDefinition.validate_raw(obj: obj.workflow_definition)
end

Instance Method Details

#to_jsonString

Returns:

  • (String)


44
45
46
# File 'lib/vellum_ai/types/workflow_execution_resumed_body.rb', line 44

def to_json
  @_field_set&.to_json
end