Table of Contents

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

Note string

Human readable message for the schedule.

Paused bool

Whether the schedule is paused.

Properties

Note

Human readable message for the schedule.

public string? Note { get; init; }

Property Value

string

Paused

Whether the schedule is paused.

public bool Paused { get; init; }

Property Value

bool