tmdb-ts
    Preparing search index...

    Interface LatestMovie

    The most recently added movie on TMDB.

    interface LatestMovie {
        adult: boolean;
        backdrop_path?: string;
        belongs_to_collection?: BelongsToCollection;
        budget: number;
        genres: Genre[];
        homepage: string;
        id: number;
        imdb_id: string | null;
        original_language: string;
        original_title: string;
        overview: string;
        popularity: number;
        poster_path: string;
        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
    belongs_to_collection?: BelongsToCollection
    budget: number
    genres: Genre[]
    homepage: string
    id: number
    imdb_id: string | null
    original_language: string
    original_title: string
    overview: string
    popularity: number
    poster_path: string
    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