Interface: IDoUpdate
coresdk.workflow_activation.IDoUpdate
Properties of a DoUpdate.
Hierarchy
-
↳
IDoUpdate
Properties
headers
• Optional headers: null | { [k: string]: $Properties; }
Headers attached to the update
Inherited from
id
• Optional id: null | string
A workflow-unique identifier for this update
Inherited from
input
• Optional input: null | $Properties[]
The input to the update
Inherited from
meta
• Optional meta: null | $Properties
Remaining metadata associated with the update. The update_id field is stripped from here
and moved to id, since it is guaranteed to be present.
Inherited from
name
• Optional name: null | string
The name of the update handler
Inherited from
protocolInstanceId
• Optional protocolInstanceId: null | string
The protocol message instance ID - this is used to uniquely track the ID server side and internally.
Inherited from
$Properties.protocolInstanceId
runValidator
• Optional runValidator: null | boolean
If set true, lang must run the update's validator before running the handler. This will be set false during replay, since validation is not re-run during replay.