40 lines
1.1 KiB
TypeScript
40 lines
1.1 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.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @export
|
||
|
*/
|
||
|
export const TransportStreamTimestamp = {
|
||
|
None: 'None',
|
||
|
Zero: 'Zero',
|
||
|
Valid: 'Valid'
|
||
|
} as const;
|
||
|
export type TransportStreamTimestamp = typeof TransportStreamTimestamp[keyof typeof TransportStreamTimestamp];
|
||
|
|
||
|
|
||
|
export function TransportStreamTimestampFromJSON(json: any): TransportStreamTimestamp {
|
||
|
return TransportStreamTimestampFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function TransportStreamTimestampFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransportStreamTimestamp {
|
||
|
return json as TransportStreamTimestamp;
|
||
|
}
|
||
|
|
||
|
export function TransportStreamTimestampToJSON(value?: TransportStreamTimestamp | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|