Class: Temporalio::Workflow::UpdateInfo
- Inherits:
-
Struct
- Object
- Struct
- Temporalio::Workflow::UpdateInfo
- Defined in:
- lib/temporalio/workflow/update_info.rb
Overview
Note:
WARNING: This class may have required parameters added to its constructor. Users should not instantiate this class or it may break in incompatible ways.
Information about a workflow update
Instance Attribute Summary collapse
-
#id ⇒ String
Update ID.
-
#name ⇒ String
Update name.
Instance Attribute Details
#id ⇒ String
Returns Update ID.
14 15 16 17 18 |
# File 'lib/temporalio/workflow/update_info.rb', line 14 UpdateInfo = Struct.new( :id, :name, keyword_init: true ) |
#name ⇒ String
Returns Update name.
14 15 16 17 18 |
# File 'lib/temporalio/workflow/update_info.rb', line 14 UpdateInfo = Struct.new( :id, :name, keyword_init: true ) |