jellyfin-discord-bot/server/jellyfin/models/EmbeddedSubtitleOptions.ts

41 lines
1.2 KiB
TypeScript
Raw Normal View History

2023-05-04 23:34:53 +02:00
/* 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;
}