Class PauseScheduleInput
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
Input for PauseScheduleAsync(PauseScheduleInput).
public record PauseScheduleInput : IEquatable<PauseScheduleInput>
- Inheritance
-
PauseScheduleInput
- Implements
- Inherited Members
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
PauseScheduleInput(string, string?, RpcOptions?)
Input for PauseScheduleAsync(PauseScheduleInput).
public PauseScheduleInput(string Id, string? Note, RpcOptions? RpcOptions)
Parameters
Id
stringSchedule ID.
Note
stringPause note.
RpcOptions
RpcOptionsRPC 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
Pause note.
public string? Note { get; init; }
Property Value
RpcOptions
RPC options.
public RpcOptions? RpcOptions { get; init; }