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

39 lines
976 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 EncodingContext = {
Streaming: 'Streaming',
Static: 'Static'
} as const;
export type EncodingContext = typeof EncodingContext[keyof typeof EncodingContext];
export function EncodingContextFromJSON(json: any): EncodingContext {
return EncodingContextFromJSONTyped(json, false);
}
export function EncodingContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): EncodingContext {
return json as EncodingContext;
}
export function EncodingContextToJSON(value?: EncodingContext | null): any {
return value as any;
}