Class UnpauseScheduleInput
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
Input for UnpauseScheduleAsync(UnpauseScheduleInput).
public record UnpauseScheduleInput : IEquatable<UnpauseScheduleInput>
- Inheritance
-
UnpauseScheduleInput
- Implements
- Inherited Members
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
UnpauseScheduleInput(string, string?, RpcOptions?)
Input for UnpauseScheduleAsync(UnpauseScheduleInput).
public UnpauseScheduleInput(string Id, string? Note, RpcOptions? RpcOptions)
Parameters
IdstringSchedule ID.
NotestringUnpause note.
RpcOptionsRpcOptionsRPC options.
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Properties
Id
Schedule ID.
public string Id { get; init; }
Property Value
Note
Unpause note.
public string? Note { get; init; }
Property Value
RpcOptions
RPC options.
public RpcOptions? RpcOptions { get; init; }