Class: SwarmSDK::Workflow::TransformerExecutor::TransformerResult
- Inherits:
-
Struct
- Object
- Struct
- SwarmSDK::Workflow::TransformerExecutor::TransformerResult
- Defined in:
- lib/swarm_sdk/workflow/transformer_executor.rb
Overview
Result object for transformer execution
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
-
#error_message ⇒ Object
Returns the value of attribute error_message.
-
#halt ⇒ Object
Returns the value of attribute halt.
-
#skip_execution ⇒ Object
Returns the value of attribute skip_execution.
-
#success ⇒ Object
Returns the value of attribute success.
Instance Method Summary collapse
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content
96 97 98 |
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96 def content @content end |
#error_message ⇒ Object
Returns the value of attribute error_message
96 97 98 |
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96 def end |
#halt ⇒ Object
Returns the value of attribute halt
96 97 98 |
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96 def halt @halt end |
#skip_execution ⇒ Object
Returns the value of attribute skip_execution
96 97 98 |
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96 def skip_execution @skip_execution end |
#success ⇒ Object
Returns the value of attribute success
96 97 98 |
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 96 def success @success end |
Instance Method Details
#halt? ⇒ Boolean
101 102 103 |
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 101 def halt? halt end |
#skip_execution? ⇒ Boolean
97 98 99 |
# File 'lib/swarm_sdk/workflow/transformer_executor.rb', line 97 def skip_execution? skip_execution end |