Type Alias JSONAPIXtreamSeason
JSONAPIXtreamSeason: {
type: "season";
id: string;
attributes: { number: number; cover: string; releaseDate: Date | null };
relationships: {
show: { data: { type: "show"; id: string } };
episodes: { data: { type: "episode"; id: string }[] };
};
}
Type declaration
type: "season"
id: string
attributes: { number: number; cover: string; releaseDate: Date | null }
number: number
cover: string
releaseDate: Date | null
relationships: {
show: { data: { type: "show"; id: string } };
episodes: { data: { type: "episode"; id: string }[] };
}
show: { data: { type: "show"; id: string } }
data: { type: "show"; id: string }
episodes: { data: { type: "episode"; id: string }[] }
JSON:API Xtream season information
This type represents a season of a show in the Xtream system in JSON:API format