Class: Temporalio::Workflow::UpdateInfo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#idString

Returns Update ID.

Returns:

  • (String)

    Update ID.



14
15
16
17
18
# File 'lib/temporalio/workflow/update_info.rb', line 14

UpdateInfo = Struct.new(
  :id,
  :name,
  keyword_init: true
)

#nameString

Returns Update name.

Returns:

  • (String)

    Update name.



14
15
16
17
18
# File 'lib/temporalio/workflow/update_info.rb', line 14

UpdateInfo = Struct.new(
  :id,
  :name,
  keyword_init: true
)