jellyfin-discord-bot/jellyfin/model/libraryOptionsResultDto.ts
2023-04-15 22:02:40 +02:00

67 lines
1.8 KiB
TypeScript

/**
* 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 { RequestFile } from './models';
import { LibraryOptionInfoDto } from './libraryOptionInfoDto';
import { LibraryTypeOptionsDto } from './libraryTypeOptionsDto';
/**
* Library options result dto.
*/
export class LibraryOptionsResultDto {
/**
* Gets or sets the metadata savers.
*/
'metadataSavers'?: Array<LibraryOptionInfoDto>;
/**
* Gets or sets the metadata readers.
*/
'metadataReaders'?: Array<LibraryOptionInfoDto>;
/**
* Gets or sets the subtitle fetchers.
*/
'subtitleFetchers'?: Array<LibraryOptionInfoDto>;
/**
* Gets or sets the type options.
*/
'typeOptions'?: Array<LibraryTypeOptionsDto>;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "metadataSavers",
"baseName": "MetadataSavers",
"type": "Array<LibraryOptionInfoDto>"
},
{
"name": "metadataReaders",
"baseName": "MetadataReaders",
"type": "Array<LibraryOptionInfoDto>"
},
{
"name": "subtitleFetchers",
"baseName": "SubtitleFetchers",
"type": "Array<LibraryOptionInfoDto>"
},
{
"name": "typeOptions",
"baseName": "TypeOptions",
"type": "Array<LibraryTypeOptionsDto>"
} ];
static getAttributeTypeMap() {
return LibraryOptionsResultDto.attributeTypeMap;
}
}