Class PlaybackStopInfo.

PlaybackStopInfo

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

Properties

Failed?: boolean

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

PlaybackStopInfo

PlaybackStopInfo

ItemId?: string

Gets or sets the item identifier.

PlaybackStopInfo

LiveStreamId?: null | string

Gets or sets the live stream identifier.

PlaybackStopInfo

MediaSourceId?: null | string

Gets or sets the media version identifier.

PlaybackStopInfo

NextMediaType?: null | string

PlaybackStopInfo

NowPlayingQueue?: null | QueueItem[]

PlaybackStopInfo

PlaylistItemId?: null | string

PlaybackStopInfo

PlaySessionId?: null | string

Gets or sets the play session identifier.

PlaybackStopInfo

PositionTicks?: null | number

Gets or sets the position ticks.

PlaybackStopInfo

SessionId?: null | string

Gets or sets the session id.

PlaybackStopInfo