Tsarr Documentation - v2.11.0
    Preparing search index...

    Type Alias MovieDetails

    type MovieDetails = {
        id?: number;
        imdbId?: string;
        adult?: boolean;
        backdropPath?: string;
        posterPath?: string;
        budget?: number;
        genres?: Genre[];
        homepage?: string;
        relatedVideos?: RelatedVideo[];
        originalLanguage?: string;
        originalTitle?: string;
        overview?: string;
        popularity?: number;
        productionCompanies?: ProductionCompany[];
        productionCountries?: { iso_3166_1?: string; name?: string }[];
        releaseDate?: string;
        releases?: {
            results?: {
                iso_3166_1?: string;
                rating?: string | null;
                release_dates?: {
                    certification?: string;
                    iso_639_1?: string | null;
                    note?: string | null;
                    release_date?: string;
                    type?: number;
                }[];
            }[];
        };
        revenue?: number
        | null;
        runtime?: number;
        spokenLanguages?: SpokenLanguage[];
        status?: string;
        tagline?: string;
        title?: string;
        video?: boolean;
        voteAverage?: number;
        voteCount?: number;
        credits?: { cast?: Cast[]; crew?: Crew[] };
        collection?: {
            id?: number;
            name?: string;
            posterPath?: string;
            backdropPath?: string;
        };
        externalIds?: ExternalIds;
        mediaInfo?: MediaInfo;
        watchProviders?: WatchProviders[];
    }
    Index

    Properties

    id?: number
    imdbId?: string
    adult?: boolean
    backdropPath?: string
    posterPath?: string
    budget?: number
    genres?: Genre[]
    homepage?: string
    relatedVideos?: RelatedVideo[]
    originalLanguage?: string
    originalTitle?: string
    overview?: string
    popularity?: number
    productionCompanies?: ProductionCompany[]
    productionCountries?: { iso_3166_1?: string; name?: string }[]
    releaseDate?: string
    releases?: {
        results?: {
            iso_3166_1?: string;
            rating?: string | null;
            release_dates?: {
                certification?: string;
                iso_639_1?: string | null;
                note?: string | null;
                release_date?: string;
                type?: number;
            }[];
        }[];
    }
    revenue?: number | null
    runtime?: number
    spokenLanguages?: SpokenLanguage[]
    status?: string
    tagline?: string
    title?: string
    video?: boolean
    voteAverage?: number
    voteCount?: number
    credits?: { cast?: Cast[]; crew?: Crew[] }
    collection?: {
        id?: number;
        name?: string;
        posterPath?: string;
        backdropPath?: string;
    }
    externalIds?: ExternalIds
    mediaInfo?: MediaInfo
    watchProviders?: WatchProviders[]