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

105 lines
2.6 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.
*/
import { exists, mapValues } from '../runtime';
import type { SubtitleDeliveryMethod } from './SubtitleDeliveryMethod';
import {
SubtitleDeliveryMethodFromJSON,
SubtitleDeliveryMethodFromJSONTyped,
SubtitleDeliveryMethodToJSON,
} from './SubtitleDeliveryMethod';
/**
*
* @export
* @interface SubtitleProfile
*/
export interface SubtitleProfile {
/**
*
* @type {string}
* @memberof SubtitleProfile
*/
format?: string | null;
/**
*
* @type {SubtitleDeliveryMethod}
* @memberof SubtitleProfile
*/
method?: SubtitleDeliveryMethod;
/**
*
* @type {string}
* @memberof SubtitleProfile
*/
didlMode?: string | null;
/**
*
* @type {string}
* @memberof SubtitleProfile
*/
language?: string | null;
/**
*
* @type {string}
* @memberof SubtitleProfile
*/
container?: string | null;
}
/**
* Check if a given object implements the SubtitleProfile interface.
*/
export function instanceOfSubtitleProfile(value: object): boolean {
let isInstance = true;
return isInstance;
}
export function SubtitleProfileFromJSON(json: any): SubtitleProfile {
return SubtitleProfileFromJSONTyped(json, false);
}
export function SubtitleProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubtitleProfile {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'format': !exists(json, 'Format') ? undefined : json['Format'],
'method': !exists(json, 'Method') ? undefined : SubtitleDeliveryMethodFromJSON(json['Method']),
'didlMode': !exists(json, 'DidlMode') ? undefined : json['DidlMode'],
'language': !exists(json, 'Language') ? undefined : json['Language'],
'container': !exists(json, 'Container') ? undefined : json['Container'],
};
}
export function SubtitleProfileToJSON(value?: SubtitleProfile | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'Format': value.format,
'Method': SubtitleDeliveryMethodToJSON(value.method),
'DidlMode': value.didlMode,
'Language': value.language,
'Container': value.container,
};
}