@jellyfin/sdk
    Preparing search index...

    Interface PlayQueueUpdate

    Class PlayQueueUpdate.

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

    Properties

    IsPlaying?: boolean

    Gets a value indicating whether the current item is playing.

    LastUpdate?: string

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

    PlayingItemIndex?: number

    Gets the playing item index in the playlist.

    Playlist?: SyncPlayQueueItem[]

    Gets the playlist.

    RepeatMode?: GroupRepeatMode
    ShuffleMode?: GroupShuffleMode
    StartPositionTicks?: number

    Gets the start position ticks.