Class StartUpdateWithStartWorkflowInput
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
public record StartUpdateWithStartWorkflowInput : IEquatable<StartUpdateWithStartWorkflowInput>
- Inheritance
-
StartUpdateWithStartWorkflowInput
- Implements
- Inherited Members
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
StartUpdateWithStartWorkflowInput(string, IReadOnlyCollection<object?>, WorkflowStartUpdateWithStartOptions, IDictionary<string, Payload>?)
public StartUpdateWithStartWorkflowInput(string Update, IReadOnlyCollection<object?> Args, WorkflowStartUpdateWithStartOptions Options, IDictionary<string, Payload>? Headers)
Parameters
Update
stringUpdate name.
Args
IReadOnlyCollection<object>Update arguments.
Options
WorkflowStartUpdateWithStartOptionsOptions.
Headers
IDictionary<string, Payload>Headers if any for the update. These will be encoded using the codec before sent to the server. Note these are the update headers, start headers are in the start operation.
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Properties
Args
Update arguments.
public IReadOnlyCollection<object?> Args { get; init; }
Property Value
Headers
Headers if any for the update. These will be encoded using the codec before sent to the server. Note these are the update headers, start headers are in the start operation.
public IDictionary<string, Payload>? Headers { get; init; }
Property Value
Options
Options.
public WorkflowStartUpdateWithStartOptions Options { get; init; }
Property Value
Update
Update name.
public string Update { get; init; }