tmdb-ts
    Preparing search index...

    Interface CollectionDetails

    Detailed collection information including the movies in the collection.

    interface CollectionDetails {
        backdrop_path: string;
        id: number;
        name: string;
        overview: string;
        parts: Movie[];
        poster_path: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    backdrop_path: string
    id: number
    name: string
    overview: string
    parts: Movie[]

    The list of movies that belong to this collection.

    poster_path: string