Client capabilities dto.

ClientCapabilitiesDto

interface ClientCapabilitiesDto {
    AppStoreUrl?: null | string;
    DeviceProfile?: DeviceProfile;
    IconUrl?: null | string;
    PlayableMediaTypes?: MediaType[];
    SupportedCommands?: GeneralCommandType[];
    SupportsMediaControl?: boolean;
    SupportsPersistentIdentifier?: boolean;
}

Properties

AppStoreUrl?: null | string

Gets or sets the app store url.

ClientCapabilitiesDto

DeviceProfile?: DeviceProfile

ClientCapabilitiesDto

IconUrl?: null | string

Gets or sets the icon url.

ClientCapabilitiesDto

PlayableMediaTypes?: MediaType[]

Gets or sets the list of playable media types.

ClientCapabilitiesDto

SupportedCommands?: GeneralCommandType[]

Gets or sets the list of supported commands.

ClientCapabilitiesDto

SupportsMediaControl?: boolean

Gets or sets a value indicating whether session supports media control.

ClientCapabilitiesDto

SupportsPersistentIdentifier?: boolean

Gets or sets a value indicating whether session supports a persistent identifier.

ClientCapabilitiesDto