30 lines
826 B
TypeScript
30 lines
826 B
TypeScript
|
/**
|
||
|
* Jellyfin API
|
||
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||
|
*
|
||
|
* The version of the OpenAPI document: 10.8.9
|
||
|
*
|
||
|
*
|
||
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||
|
* https://openapi-generator.tech
|
||
|
* Do not edit the class manually.
|
||
|
*/
|
||
|
|
||
|
import { RequestFile } from './models';
|
||
|
|
||
|
/**
|
||
|
* An enum that represents a day of the week, weekdays, weekends, or all days.
|
||
|
*/
|
||
|
export enum DynamicDayOfWeek {
|
||
|
Sunday = <any> 'Sunday',
|
||
|
Monday = <any> 'Monday',
|
||
|
Tuesday = <any> 'Tuesday',
|
||
|
Wednesday = <any> 'Wednesday',
|
||
|
Thursday = <any> 'Thursday',
|
||
|
Friday = <any> 'Friday',
|
||
|
Saturday = <any> 'Saturday',
|
||
|
Everyday = <any> 'Everyday',
|
||
|
Weekday = <any> 'Weekday',
|
||
|
Weekend = <any> 'Weekend'
|
||
|
}
|