Class TriggerScheduleInput
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
Input for TriggerScheduleAsync(TriggerScheduleInput).
public record TriggerScheduleInput : IEquatable<TriggerScheduleInput>
- Inheritance
-
TriggerScheduleInput
- Implements
- Inherited Members
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
TriggerScheduleInput(string, ScheduleTriggerOptions?)
Input for TriggerScheduleAsync(TriggerScheduleInput).
public TriggerScheduleInput(string Id, ScheduleTriggerOptions? Options)
Parameters
Id
stringSchedule ID.
Options
ScheduleTriggerOptionsTrigger 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
Options
Trigger options.
public ScheduleTriggerOptions? Options { get; init; }