Table of Contents

Class DescribeWorkflowInput

Namespace
Temporalio.Client.Interceptors
Assembly
Temporalio.dll
public record DescribeWorkflowInput : IEquatable<DescribeWorkflowInput>
Inheritance
DescribeWorkflowInput
Implements
Inherited Members

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Constructors

DescribeWorkflowInput(string, string?, WorkflowDescribeOptions?)

public DescribeWorkflowInput(string Id, string? RunId, WorkflowDescribeOptions? Options)

Parameters

Id string

Workflow ID.

RunId string

Workflow run ID if any.

Options WorkflowDescribeOptions

Options passed in to describe.

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Properties

Id

Workflow ID.

public string Id { get; init; }

Property Value

string

Options

Options passed in to describe.

public WorkflowDescribeOptions? Options { get; init; }

Property Value

WorkflowDescribeOptions

RunId

Workflow run ID if any.

public string? RunId { get; init; }

Property Value

string