Interface SessionApiPostCapabilitiesRequest

Request parameters for postCapabilities operation in SessionApi.

SessionApiPostCapabilitiesRequest

interface SessionApiPostCapabilitiesRequest {
    id?: string;
    playableMediaTypes?: MediaType[];
    supportedCommands?: GeneralCommandType[];
    supportsMediaControl?: boolean;
    supportsPersistentIdentifier?: boolean;
}

Properties

id?: string

The session id.

SessionApiPostCapabilities

playableMediaTypes?: MediaType[]

A list of playable media types, comma delimited. Audio, Video, Book, Photo.

SessionApiPostCapabilities

supportedCommands?: GeneralCommandType[]

A list of supported remote control commands, comma delimited.

SessionApiPostCapabilities

supportsMediaControl?: boolean

Determines whether media can be played remotely..

SessionApiPostCapabilities

supportsPersistentIdentifier?: boolean

Determines whether the device supports a unique identifier.

SessionApiPostCapabilities