Interface MaterialObject

interface MaterialObject {
    blocked_countries: string[];
    blocked_seasons?: "all" | BlockedSeasonsObject;
    caprip: boolean;
    created_at: string;
    episodes_count?: number;
    id: string;
    imdb_id: string | number;
    kinopoisk_id: string | number;
    last_episode?: number;
    last_season?: number;
    lgbt: boolean;
    link: string;
    material_data?: MaterialData;
    mdl_id: string | number;
    other_title: string;
    quality: string;
    screenshots: string[];
    seasons?: SeasonsObject;
    shikimori_id: number;
    title: string;
    title_orig: string;
    translation: TranslationV1Object;
    type: MaterialType;
    updated_at: string;
    worldart_link: string;
    year: number;
}

Properties

blocked_countries: string[]
blocked_seasons?: "all" | BlockedSeasonsObject
caprip: boolean
created_at: string
episodes_count?: number
id: string
imdb_id: string | number
kinopoisk_id: string | number
last_episode?: number
last_season?: number
lgbt: boolean
link: string
material_data?: MaterialData
mdl_id: string | number
other_title: string
quality: string
screenshots: string[]
seasons?: SeasonsObject
shikimori_id: number
title: string
title_orig: string
translation: TranslationV1Object
updated_at: string
worldart_link: string
year: number

Generated using TypeDoc