@carlosnc/tmdb-sdk - v0.8.0
    Preparing search index...

    Interface MovieDetails

    interface MovieDetails {
        adult: boolean;
        backdrop_path: string | null;
        belongs_to_collection: BelongsToCollection | null;
        budget: number;
        genres: Genre[];
        homepage: string | null;
        id: number;
        imdb_id: string | null;
        origin_country: string[];
        original_language: string;
        original_title: string;
        overview: string;
        popularity: number;
        poster_path: string | null;
        production_companies: ProductionCompany[];
        production_countries: ProductionCountry[];
        release_date: string;
        revenue: number;
        runtime: number;
        spoken_languages: SpokenLanguage[];
        status: string;
        tagline: string;
        title: string;
        video: boolean;
        vote_average: number;
        vote_count: number;
    }
    Index

    Properties

    adult: boolean
    backdrop_path: string | null
    belongs_to_collection: BelongsToCollection | null
    budget: number
    genres: Genre[]
    homepage: string | null
    id: number
    imdb_id: string | null
    origin_country: string[]
    original_language: string
    original_title: string
    overview: string
    popularity: number
    poster_path: string | null
    production_companies: ProductionCompany[]
    production_countries: ProductionCountry[]
    release_date: string
    revenue: number
    runtime: number
    spoken_languages: SpokenLanguage[]
    status: string
    tagline: string
    title: string
    video: boolean
    vote_average: number
    vote_count: number