39 lines
988 B
TypeScript
39 lines
988 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 TranscodeSeekInfo = {
|
|
Auto: 'Auto',
|
|
Bytes: 'Bytes'
|
|
} as const;
|
|
export type TranscodeSeekInfo = typeof TranscodeSeekInfo[keyof typeof TranscodeSeekInfo];
|
|
|
|
|
|
export function TranscodeSeekInfoFromJSON(json: any): TranscodeSeekInfo {
|
|
return TranscodeSeekInfoFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function TranscodeSeekInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TranscodeSeekInfo {
|
|
return json as TranscodeSeekInfo;
|
|
}
|
|
|
|
export function TranscodeSeekInfoToJSON(value?: TranscodeSeekInfo | null): any {
|
|
return value as any;
|
|
}
|
|
|