tmdb-ts
    Preparing search index...

    Interface PersonDetails

    Full details for a person.

    interface PersonDetails {
        adult: boolean;
        also_known_as: string[];
        biography: string;
        birthday: string;
        deathday: string;
        gender: number;
        homepage: string;
        id: number;
        imdb_id: string;
        known_for_department: string;
        name: string;
        place_of_birth: string;
        popularity: number;
        profile_path: string;
    }
    Index

    Properties

    adult: boolean
    also_known_as: string[]
    biography: string
    birthday: string

    Date of birth in YYYY-MM-DD format.

    deathday: string

    Date of death in YYYY-MM-DD format, or null if alive.

    gender: number

    0 = not set, 1 = female, 2 = male, 3 = non-binary.

    homepage: string
    id: number
    imdb_id: string
    known_for_department: string
    name: string
    place_of_birth: string
    popularity: number
    profile_path: string