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