Table of Contents

Class DaySchedule

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

A schedule object.

[DataContract]
public class DaySchedule
Inheritance
DaySchedule
Inherited Members
Extension Methods

Properties

Active

Whether the schedule is active (true) or inactive (false) during the time specified between 'from' and 'to'. Defaults to true.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "active")]
public bool Active { get; set; }

Property Value

bool

Whether the schedule is active (true) or inactive (false) during the time specified between from and to. Defaults to true.

From

The time, from 00:00 to 24:00. Must be less than the time specified in to. Defaults to 00:00. Only 30 minute increments are allowed.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "from")]
public string From { get; set; }

Property Value

string

The time, from 00:00 to 24:00. Must be less than the time specified in to. Defaults to 00:00. Only 30 minute increments are allowed.

To

The time, from 00:00 to 24:00. Must be greater than the time specified in from. Defaults to 24:00. Only 30 minute increments are allowed.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "to")]
public string To { get; set; }

Property Value

string

The time, from 00:00 to 24:00. Must be greater than the time specified in from. Defaults to 24:00. Only 30 minute increments are allowed.