Class PlayQueueUpdate.

PlayQueueUpdate

interface PlayQueueUpdate {
    IsPlaying?: boolean;
    LastUpdate?: string;
    PlayingItemIndex?: number;
    Playlist?: SyncPlayQueueItem[];
    Reason?: PlayQueueUpdateReason;
    RepeatMode?: GroupRepeatMode;
    ShuffleMode?: GroupShuffleMode;
    StartPositionTicks?: number;
}

Properties

IsPlaying?: boolean

Gets a value indicating whether the current item is playing.

PlayQueueUpdate

LastUpdate?: string

Gets the UTC time of the last change to the playing queue.

PlayQueueUpdate

PlayingItemIndex?: number

Gets the playing item index in the playlist.

PlayQueueUpdate

Playlist?: SyncPlayQueueItem[]

Gets the playlist.

PlayQueueUpdate

PlayQueueUpdate

RepeatMode?: GroupRepeatMode

PlayQueueUpdate

ShuffleMode?: GroupShuffleMode

PlayQueueUpdate

StartPositionTicks?: number

Gets the start position ticks.

PlayQueueUpdate