41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
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.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* An enum representing the options to disable embedded subs.
|
||
|
* @export
|
||
|
*/
|
||
|
export const EmbeddedSubtitleOptions = {
|
||
|
AllowAll: 'AllowAll',
|
||
|
AllowText: 'AllowText',
|
||
|
AllowImage: 'AllowImage',
|
||
|
AllowNone: 'AllowNone'
|
||
|
} as const;
|
||
|
export type EmbeddedSubtitleOptions = typeof EmbeddedSubtitleOptions[keyof typeof EmbeddedSubtitleOptions];
|
||
|
|
||
|
|
||
|
export function EmbeddedSubtitleOptionsFromJSON(json: any): EmbeddedSubtitleOptions {
|
||
|
return EmbeddedSubtitleOptionsFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function EmbeddedSubtitleOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedSubtitleOptions {
|
||
|
return json as EmbeddedSubtitleOptions;
|
||
|
}
|
||
|
|
||
|
export function EmbeddedSubtitleOptionsToJSON(value?: EmbeddedSubtitleOptions | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|