/* 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 { PlayMethod } from './play-method'; import { RepeatMode } from './repeat-mode'; /** * * @export * @interface PlayerStateInfo */ export interface PlayerStateInfo { /** * Gets or sets the now playing position ticks. * @type {number} * @memberof PlayerStateInfo */ 'PositionTicks'?: number | null; /** * Gets or sets a value indicating whether this instance can seek. * @type {boolean} * @memberof PlayerStateInfo */ 'CanSeek'?: boolean; /** * Gets or sets a value indicating whether this instance is paused. * @type {boolean} * @memberof PlayerStateInfo */ 'IsPaused'?: boolean; /** * Gets or sets a value indicating whether this instance is muted. * @type {boolean} * @memberof PlayerStateInfo */ 'IsMuted'?: boolean; /** * Gets or sets the volume level. * @type {number} * @memberof PlayerStateInfo */ 'VolumeLevel'?: number | null; /** * Gets or sets the index of the now playing audio stream. * @type {number} * @memberof PlayerStateInfo */ 'AudioStreamIndex'?: number | null; /** * Gets or sets the index of the now playing subtitle stream. * @type {number} * @memberof PlayerStateInfo */ 'SubtitleStreamIndex'?: number | null; /** * Gets or sets the now playing media version identifier. * @type {string} * @memberof PlayerStateInfo */ 'MediaSourceId'?: string | null; /** * * @type {PlayMethod} * @memberof PlayerStateInfo */ 'PlayMethod'?: PlayMethod; /** * * @type {RepeatMode} * @memberof PlayerStateInfo */ 'RepeatMode'?: RepeatMode; /** * Gets or sets the now playing live stream identifier. * @type {string} * @memberof PlayerStateInfo */ 'LiveStreamId'?: string | null; }