StandardXtreamSeason: {
    id: string;
    name: string;
    episodeCount: number;
    overview: string;
    number: number;
    voteAverage: number;
    cover: string;
    releaseDate: Date | null;
    showId: string;
    episodes?: StandardXtreamEpisode[];
}

Standardized Xtream season information

This type represents a season of a show in the Xtream system in a standardized format

Type declaration

  • id: string

    The unique identifier for the season

  • name: string

    The name of the season

  • episodeCount: number

    The number of episodes in the season

  • overview: string

    The overview/synopsis of the season

  • number: number

    The season number

  • voteAverage: number

    The vote average of the season

  • cover: string

    The URL for the season's cover image

  • releaseDate: Date | null

    The date when the season first aired

  • showId: string

    The ID of the show this season belongs to

  • Optionalepisodes?: StandardXtreamEpisode[]

    Episodes in this season