@jellyfin/sdk
    Preparing search index...

    Interface PlaybackStopInfo

    Class PlaybackStopInfo.

    interface PlaybackStopInfo {
        Failed?: boolean;
        Item?: BaseItemDto;
        ItemId?: string;
        LiveStreamId?: string | null;
        MediaSourceId?: string | null;
        NextMediaType?: string | null;
        NowPlayingQueue?: QueueItem[] | null;
        PlaylistItemId?: string | null;
        PlaySessionId?: string | null;
        PositionTicks?: number | null;
        SessionId?: string | null;
    }
    Index

    Properties

    Failed?: boolean

    Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed.

    ItemId?: string

    Gets or sets the item identifier.

    LiveStreamId?: string | null

    Gets or sets the live stream identifier.

    MediaSourceId?: string | null

    Gets or sets the media version identifier.

    NextMediaType?: string | null
    NowPlayingQueue?: QueueItem[] | null
    PlaylistItemId?: string | null
    PlaySessionId?: string | null

    Gets or sets the play session identifier.

    PositionTicks?: number | null

    Gets or sets the position ticks.

    SessionId?: string | null

    Gets or sets the session id.