40 lines
938 B
TypeScript
40 lines
938 B
TypeScript
|
/* tslint:disable */
|
||
|
/* eslint-disable */
|
||
|
/**
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @export
|
||
|
*/
|
||
|
export const DayPattern = {
|
||
|
Daily: 'Daily',
|
||
|
Weekdays: 'Weekdays',
|
||
|
Weekends: 'Weekends'
|
||
|
} as const;
|
||
|
export type DayPattern = typeof DayPattern[keyof typeof DayPattern];
|
||
|
|
||
|
|
||
|
export function DayPatternFromJSON(json: any): DayPattern {
|
||
|
return DayPatternFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function DayPatternFromJSONTyped(json: any, ignoreDiscriminator: boolean): DayPattern {
|
||
|
return json as DayPattern;
|
||
|
}
|
||
|
|
||
|
export function DayPatternToJSON(value?: DayPattern | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|