popcorn-md
    Preparing search index...

    Interface Collection

    Represents a movie collection (e.g., a franchise or series).

    interface Collection {
        backdrop_path?: string;
        id: number;
        name: string;
        poster_path?: string;
    }
    Index

    Properties

    backdrop_path?: string

    Optional path to the backdrop image.

    id: number

    The TMDb ID of the collection.

    name: string

    The display name of the collection.

    poster_path?: string

    Optional path to the poster image.