Table of Contents

Class CreateScheduleInput

Namespace
Temporalio.Client.Interceptors
Assembly
Temporalio.dll
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?)

public CreateScheduleInput(string Id, Schedule Schedule, ScheduleOptions? Options)

Parameters

Id string

Schedule ID.

Schedule Schedule

Schedule.

Options ScheduleOptions

Schedule 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

string

Options

Schedule options.

public ScheduleOptions? Options { get; init; }

Property Value

ScheduleOptions

Schedule

Schedule.

public Schedule Schedule { get; init; }

Property Value

Schedule