tmdb-ts
    Preparing search index...

    Interface TvShowDetails

    Full details for a TV show.

    interface TvShowDetails {
        backdrop_path: string;
        created_by: CreatedBy[];
        episode_run_time: number[];
        first_air_date: string;
        genres: Genre[];
        homepage: string;
        id: number;
        in_production: boolean;
        languages: string[];
        last_air_date: string;
        last_episode_to_air: LastEpisodeToAir;
        name: string;
        networks: Network[];
        next_episode_to_air?: NextEpisodeToAir;
        number_of_episodes: number;
        number_of_seasons: number;
        origin_country: string[];
        original_language: string;
        original_name: string;
        overview: string;
        popularity: number;
        poster_path: string;
        production_companies: ProductionCompany[];
        production_countries: ProductionCountry[];
        seasons: Season[];
        spoken_languages: SpokenLanguage[];
        status: string;
        tagline: string;
        type: string;
        vote_average: number;
        vote_count: number;
    }
    Index

    Properties

    backdrop_path: string
    created_by: CreatedBy[]
    episode_run_time: number[]

    The running time per episode in minutes.

    first_air_date: string

    First air date in YYYY-MM-DD format.

    genres: Genre[]
    homepage: string
    id: number
    in_production: boolean
    languages: string[]
    last_air_date: string
    last_episode_to_air: LastEpisodeToAir
    name: string
    networks: Network[]
    next_episode_to_air?: NextEpisodeToAir
    number_of_episodes: number
    number_of_seasons: number
    origin_country: string[]
    original_language: string
    original_name: string
    overview: string
    popularity: number
    poster_path: string
    production_companies: ProductionCompany[]
    production_countries: ProductionCountry[]
    seasons: Season[]
    spoken_languages: SpokenLanguage[]
    status: string

    The show's current status (e.g. "Returning Series", "Ended", "Canceled").

    tagline: string
    type: string

    The show's type (e.g. "Scripted", "Reality", "Documentary").

    vote_average: number
    vote_count: number