UNPKG

@jellyfin/sdk

Version:
51 lines (50 loc) 1.54 kB
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * Do not edit the class manually. * * Jellyfin API * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import type { ImageOption } from './image-option'; import type { ImageType } from './image-type'; import type { LibraryOptionInfoDto } from './library-option-info-dto'; /** * Library type options dto. * @export * @interface LibraryTypeOptionsDto */ export interface LibraryTypeOptionsDto { /** * Gets or sets the type. * @type {string} * @memberof LibraryTypeOptionsDto */ 'Type'?: string | null; /** * Gets or sets the metadata fetchers. * @type {Array<LibraryOptionInfoDto>} * @memberof LibraryTypeOptionsDto */ 'MetadataFetchers'?: Array<LibraryOptionInfoDto>; /** * Gets or sets the image fetchers. * @type {Array<LibraryOptionInfoDto>} * @memberof LibraryTypeOptionsDto */ 'ImageFetchers'?: Array<LibraryOptionInfoDto>; /** * Gets or sets the supported image types. * @type {Array<ImageType>} * @memberof LibraryTypeOptionsDto */ 'SupportedImageTypes'?: Array<ImageType>; /** * Gets or sets the default image options. * @type {Array<ImageOption>} * @memberof LibraryTypeOptionsDto */ 'DefaultImageOptions'?: Array<ImageOption>; }