Table of Contents

Class CancelWorkflowUpdateInput

Namespace
Temporalio.Nexus
Assembly
Temporalio.dll
public class CancelWorkflowUpdateInput
Inheritance
CancelWorkflowUpdateInput
Inherited Members

Remarks

WARNING: Workflow updates as Nexus operations are experimental.

Constructors

CancelWorkflowUpdateInput(string, string, string)

Initializes a new instance of the CancelWorkflowUpdateInput class.

public CancelWorkflowUpdateInput(string workflowId, string runId, string updateId)

Parameters

workflowId string

Workflow ID extracted from the operation token.

runId string

Workflow run ID extracted from the operation token. May be empty.

updateId string

Update ID extracted from the operation token.

Properties

RunId

Gets the workflow run ID extracted from the operation token.

public string RunId { get; }

Property Value

string

UpdateId

Gets the update ID extracted from the operation token.

public string UpdateId { get; }

Property Value

string

WorkflowId

Gets the workflow ID extracted from the operation token.

public string WorkflowId { get; }

Property Value

string