Details of an episode.

Episode

interface Episode {
    airYear: number;
    itemType: string;
    overview?: string;
    streamingOptions: {
        [key: string]: StreamingOption[];
    };
    title: string;
}

Properties

airYear: number

The year that the episode aired.

Episode

itemType: string

Type of the item. Always episode.

Episode

overview?: string

A brief overview of the plot of the episode.

Episode

streamingOptions: {
    [key: string]: StreamingOption[];
}

Map of the streaming options by the country code.

Episode

title: string

Title of the episode.

Episode