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