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