Type Alias JSONAPIXtreamCategory
JSONAPIXtreamCategory: {
type: "channel-category" | "movie-category" | "show-category";
id: string;
attributes: { name: string };
relationships?: {
parent?: {
data: {
type: "channel-category" | "movie-category" | "show-category";
id: string;
};
};
};
}
Type declaration
type: "channel-category" | "movie-category" | "show-category"
id: string
attributes: { name: string }
Optional
relationships?: {
parent?: {
data: {
type: "channel-category" | "movie-category" | "show-category";
id: string;
};
};
}
Optional
parent?: {
data: {
type: "channel-category" | "movie-category" | "show-category";
id: string;
};
}
data: { type: "channel-category" | "movie-category" | "show-category"; id: string }
type: "channel-category" | "movie-category" | "show-category"
id: string
JSON:API Xtream category information
This type represents a content category in the Xtream system in JSON:API format