Details of a show.

Export

Show

interface Show {
    creators?: string[];
    directors?: string[];
    episodeCount?: number;
    firstAirYear?: number;
    genres: Genre[];
    imdbId: string;
    lastAirYear?: number;
    originalTitle: string;
    seasonCount?: number;
    seasons?: Season[];
    status?: SeriesStatus;
    streamingInfo: {
        [key: string]: StreamingOption[];
    };
    title: string;
    tmdbId: number;
    type: ShowTypeEnum;
    year?: number;
}

Properties

creators?: string[]

Array of the creators of the series.

Memberof

Show

directors?: string[]

Array of the directors of the movie.

Memberof

Show

episodeCount?: number

Number of episodes that are either available or announced.

Memberof

Show

firstAirYear?: number

The first year that the series aired.

Memberof

Show

genres: Genre[]

Array of the genres associated with the show.

Memberof

Show

imdbId: string

IMDb ID of the show.

Memberof

Show

lastAirYear?: number

The last year that the series aired.

Memberof

Show

originalTitle: string

Original title of the show.

Memberof

Show

seasonCount?: number

Number of seasons that are either available or announced.

Memberof

Show

seasons?: Season[]

Memberof

Show

status?: SeriesStatus

Memberof

Show

streamingInfo: {
    [key: string]: StreamingOption[];
}

Country to streaming availability info mapping of a show.

Type declaration

Memberof

Show

title: string

Title of the show.

Memberof

Show

tmdbId: number

TMDb ID of the show.

Memberof

Show

Type of the show.

Memberof

Show

year?: number

The year that the movie was released.

Memberof

Show

Generated using TypeDoc