/* tslint:disable */ /* eslint-disable */ /** * 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 { ImageOption } from './image-option'; import { ImageType } from './image-type'; import { 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} * @memberof LibraryTypeOptionsDto */ 'MetadataFetchers'?: Array; /** * Gets or sets the image fetchers. * @type {Array} * @memberof LibraryTypeOptionsDto */ 'ImageFetchers'?: Array; /** * Gets or sets the supported image types. * @type {Array} * @memberof LibraryTypeOptionsDto */ 'SupportedImageTypes'?: Array; /** * Gets or sets the default image options. * @type {Array} * @memberof LibraryTypeOptionsDto */ 'DefaultImageOptions'?: Array; }