Class DescribeWorkflowInput
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
Input for DescribeWorkflowAsync(DescribeWorkflowInput).
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?)
Input for DescribeWorkflowAsync(DescribeWorkflowInput).
public DescribeWorkflowInput(string Id, string? RunId, WorkflowDescribeOptions? Options)
Parameters
Id
stringWorkflow ID.
RunId
stringWorkflow run ID if any.
Options
WorkflowDescribeOptionsOptions 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
Options
Options passed in to describe.
public WorkflowDescribeOptions? Options { get; init; }
Property Value
RunId
Workflow run ID if any.
public string? RunId { get; init; }