Interface PlaystateApiOnPlaybackStoppedRequest

Request parameters for onPlaybackStopped operation in PlaystateApi.

PlaystateApiOnPlaybackStoppedRequest

interface PlaystateApiOnPlaybackStoppedRequest {
    itemId: string;
    liveStreamId?: string;
    mediaSourceId?: string;
    nextMediaType?: string;
    playSessionId?: string;
    positionTicks?: number;
}

Properties

itemId: string

Item id.

PlaystateApiOnPlaybackStopped

liveStreamId?: string

The live stream id.

PlaystateApiOnPlaybackStopped

mediaSourceId?: string

The id of the MediaSource.

PlaystateApiOnPlaybackStopped

nextMediaType?: string

The next media type that will play.

PlaystateApiOnPlaybackStopped

playSessionId?: string

The play session id.

PlaystateApiOnPlaybackStopped

positionTicks?: number

Optional. The position, in ticks, where playback stopped. 1 tick = 10000 ms.

PlaystateApiOnPlaybackStopped