Interface TVShowDetails

TVShowDetails ($ref: "Video.Details.TVShow") Represents the detailed information of a TV show.

interface TVShowDetails {
    country?: string[];
    director?: string[];
    duration?: number;
    episodeguide?: string;
    fanart?: string;
    file: string;
    genre: string[];
    language?: string[];
    lastplayed?: string;
    mpaa?: string;
    originaltitle?: string;
    path: string;
    playcount?: number;
    plot?: string;
    premiered?: string;
    production?: string[];
    rating?: number;
    ratingimage?: string;
    runtime?: number;
    seasons?: number;
    set?: string;
    sorttitle?: string;
    streamdetails?: any;
    studio?: string;
    tagline?: string;
    theme?: string[];
    thumbnail?: string;
    title: string;
    trailer?: string;
    tvshowid: string;
    writer?: string[];
    year: number;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

country?: string[]
director?: string[]
duration?: number
episodeguide?: string
fanart?: string
file: string
genre: string[]
language?: string[]
lastplayed?: string
mpaa?: string
originaltitle?: string
path: string
playcount?: number
plot?: string
premiered?: string
production?: string[]
rating?: number
ratingimage?: string
runtime?: number
seasons?: number
set?: string
sorttitle?: string
streamdetails?: any
studio?: string
tagline?: string
theme?: string[]
thumbnail?: string
title: string
trailer?: string
tvshowid: string
writer?: string[]
year: number