UNPKG

@jellyfin/sdk

Version:
63 lines (62 loc) 1.87 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 { DeviceProfile } from './device-profile'; import type { GeneralCommandType } from './general-command-type'; import type { MediaType } from './media-type'; /** * Client capabilities dto. * @export * @interface ClientCapabilitiesDto */ export interface ClientCapabilitiesDto { /** * Gets or sets the list of playable media types. * @type {Array<MediaType>} * @memberof ClientCapabilitiesDto */ 'PlayableMediaTypes'?: Array<MediaType>; /** * Gets or sets the list of supported commands. * @type {Array<GeneralCommandType>} * @memberof ClientCapabilitiesDto */ 'SupportedCommands'?: Array<GeneralCommandType>; /** * Gets or sets a value indicating whether session supports media control. * @type {boolean} * @memberof ClientCapabilitiesDto */ 'SupportsMediaControl'?: boolean; /** * Gets or sets a value indicating whether session supports a persistent identifier. * @type {boolean} * @memberof ClientCapabilitiesDto */ 'SupportsPersistentIdentifier'?: boolean; /** * * @type {DeviceProfile} * @memberof ClientCapabilitiesDto */ 'DeviceProfile'?: DeviceProfile; /** * Gets or sets the app store url. * @type {string} * @memberof ClientCapabilitiesDto */ 'AppStoreUrl'?: string | null; /** * Gets or sets the icon url. * @type {string} * @memberof ClientCapabilitiesDto */ 'IconUrl'?: string | null; }