Details of a streaming service localized according to the parent country.

Service

interface Service {
    addons: Addon[];
    homePage: string;
    id: string;
    imageSet: ServiceImageSet;
    name: string;
    streamingOptionTypes: StreamingOptionTypes;
    themeColorCode: string;
}

Properties

addons: Addon[]

Array of the supported addons in the service.

Service

homePage: string

Link to the homepage of the service.

Service

id: string

Id of the service.

Service

imageSet: ServiceImageSet

Image set of the service.

Service

name: string

Name of the service.

Service

streamingOptionTypes: StreamingOptionTypes

Service

themeColorCode: string

Associated theme color hex code of the service.

Service