Class ScheduleListState
- Namespace
- Temporalio.Client.Schedules
- Assembly
- Temporalio.dll
State of a listed schedule.
public record ScheduleListState : IEquatable<ScheduleListState>
- Inheritance
-
ScheduleListState
- Implements
- Inherited Members
Constructors
ScheduleListState(string?, bool)
State of a listed schedule.
public ScheduleListState(string? Note, bool Paused)
Parameters
Properties
Note
Human readable message for the schedule.
public string? Note { get; init; }
Property Value
Paused
Whether the schedule is paused.
public bool Paused { get; init; }