/** * This is auto-generated file, don't modify this file manually */ import { VideoVideoImage } from './VideoVideoImage'; export interface VideoVideoAlbumFull { /** * Album ID */ id?: number; /** * Album owner's ID */ owner_id?: number; /** * Album title */ title?: string; /** * Album trackcode */ track_code?: string; response_type?: 'min' | 'full'; /** * Total number of videos in album */ count?: number; /** * Album cover image in different sizes */ image?: VideoVideoImage[]; /** * Need blur album thumb or not */ image_blur?: 1; /** * Information whether album is system */ is_system?: 1; /** * Date when the album has been updated last time in Unixtime */ updated_time?: number; /** * Is user can edit playlist */ can_edit?: 0 | 1; /** * Is user can delete playlist */ can_delete?: 0 | 1; /** * Is user can upload video to playlist */ can_upload?: 0 | 1; }