An entity representing a user's access schedule.

AccessSchedule

interface AccessSchedule {
    DayOfWeek?: DynamicDayOfWeek;
    EndHour?: number;
    Id?: number;
    StartHour?: number;
    UserId?: string;
}

Properties

DayOfWeek?: DynamicDayOfWeek

AccessSchedule

EndHour?: number

Gets or sets the end hour.

AccessSchedule

Id?: number

Gets the id of this instance.

AccessSchedule

StartHour?: number

Gets or sets the start hour.

AccessSchedule

UserId?: string

Gets the id of the associated user.

AccessSchedule