/** * This is auto-generated file, don't modify this file manually */ import { PhotosPhotoSizes } from './PhotosPhotoSizes'; export interface PhotosPhotoAlbumFull { /** * Information whether current user can upload photo to the album */ can_upload?: 0 | 1; /** * Information whether album comments are disabled */ comments_disabled?: 0 | 1; /** * Date when the album has been created in Unixtime, not set for system albums */ created?: number; /** * Photo album description */ description?: string; /** * album can delete */ can_delete?: boolean; /** * Photo album ID */ id?: number; /** * album can be selected to feed */ can_include_to_feed?: boolean; /** * Need show privacy lock at album */ is_locked?: boolean; /** * Album owner's ID */ owner_id?: number; /** * Photos number */ size?: number; sizes?: PhotosPhotoSizes[]; /** * Thumb photo ID */ thumb_id?: number; /** * Information whether the album thumb is last photo */ thumb_is_last?: 0 | 1; /** * URL of the thumb image */ thumb_src?: string; /** * Photo album title */ title?: string; /** * Date when the album has been updated last time in Unixtime, not set for system albums */ updated?: number; /** * Information whether only community administrators can upload photos */ upload_by_admins_only?: 0 | 1; }