/* tslint:disable */ /* eslint-disable */ /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * Do not edit the class manually. * * Jellyfin API * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import { DynamicDayOfWeek } from './dynamic-day-of-week'; /** * An entity representing a user\'s access schedule. * @export * @interface AccessSchedule */ export interface AccessSchedule { /** * Gets the id of this instance. * @type {number} * @memberof AccessSchedule */ 'Id'?: number; /** * Gets the id of the associated user. * @type {string} * @memberof AccessSchedule */ 'UserId'?: string; /** * * @type {DynamicDayOfWeek} * @memberof AccessSchedule */ 'DayOfWeek'?: DynamicDayOfWeek; /** * Gets or sets the start hour. * @type {number} * @memberof AccessSchedule */ 'StartHour'?: number; /** * Gets or sets the end hour. * @type {number} * @memberof AccessSchedule */ 'EndHour'?: number; }