Details of a season.

Season

interface Season {
    episodes?: Episode[];
    firstAirYear: number;
    itemType: string;
    lastAirYear: number;
    streamingOptions: {
        [key: string]: StreamingOption[];
    };
    title: string;
}

Properties

episodes?: Episode[]

Array of the episodes belong to the season.

Season

firstAirYear: number

The first year that the season aired.

Season

itemType: string

Type of the item. Always season.

Season

lastAirYear: number

The last year that the season aired.

Season

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

Map of the streaming options by the country code.

Season

title: string

Title of the season.

Season