Type Alias XtreamShowListing

XtreamShowListing: {
    num: number;
    name: string;
    title: string;
    year: string | null;
    series_id: number;
    stream_type: string;
    cover: string;
    plot: string | null;
    cast: string | null;
    director: string | null;
    genre: string | null;
    releaseDate: string | null;
    release_date: string | null;
    last_modified: string;
    rating: string;
    rating_5based: number;
    backdrop_path: string[];
    youtube_trailer: string | null;
    episode_run_time: string | null;
    category_id: string;
    category_ids: number[];
}

Xtream show information

This type represents a show listing in the Xtream system

Type declaration

  • num: number

    The position/order number of the show

  • name: string

    The title of the show

  • title: string

    The title of the show

  • year: string | null

    The year of release

  • series_id: number

    The unique identifier for the series

  • stream_type: string

    The type of stream (e.g., "series")

  • cover: string

    The URL for the show's cover image

  • plot: string | null

    The synopsis/description of the show

  • cast: string | null

    The cast members of the show

  • director: string | null

    The director(s) of the show

  • genre: string | null

    The genre(s) of the show

  • releaseDate: string | null

    The release date of the show (alternate format)

  • release_date: string | null

    The release date of the show

  • last_modified: string

    The date when the show was last updated

  • rating: string

    The show's rating as a string

  • rating_5based: number

    The show's rating on a 5-point scale as a string

  • backdrop_path: string[]

    Array of backdrop image URLs

  • youtube_trailer: string | null

    The YouTube ID or URL for the trailer

  • episode_run_time: string | null

    The average runtime of episodes as a string

  • category_id: string

    The primary category ID of the show

  • category_ids: number[]

    All category IDs the show belongs to