Table of Contents

Class Schedule

Namespace
Smartsheet.Api.Models
Assembly
smartsheet-csharp-sdk.dll

Represents the Schedule object.

public class Schedule
Inheritance
Schedule
Inherited Members

Properties

DayDescriptors

A string array of day descriptors.

public IList<DayDescriptor> DayDescriptors { get; set; }

Property Value

IList<DayDescriptor>

the array of day descriptors

DayOfMonth

Get the day within the month.

public int? DayOfMonth { get; set; }

Property Value

int?

the day

DayOrdinal

A string with the day ordinal.

public DayOrdinal DayOrdinal { get; set; }

Property Value

DayOrdinal

the day ordinal

EndAt

Gets the date, time and time zone at which the delivery schedule will end.

public DateTime EndAt { get; set; }

Property Value

DateTime

the timestamp

LastSentAt

Gets the The date and time for when the last request was sent. Read-only

public DateTime LastSentAt { get; set; }

Property Value

DateTime

the timestamp

NextSendAt

The date and time for when the next request is scheduled to send. Read-only.

public DateTime NextSendAt { get; set; }

Property Value

DateTime

the timestamp

RepeatEvery

Gets the frequency on which the request will be delivered.

public int? RepeatEvery { get; set; }

Property Value

int?

the repeat frequency

StartAt

Gets the date, time and time zone at which the first delivery will start

public DateTime StartAt { get; set; }

Property Value

DateTime

the timestamp

Type

Gets the scheudle type

public ScheduleType? Type { get; set; }

Property Value

ScheduleType?

the ScheduleType

See Also