/** * This is auto-generated file, don't modify this file manually */ import { PhotosImageType } from './PhotosImageType'; export interface PhotosImage { /** * Height of the photo in px. */ height?: number; type?: PhotosImageType; /** * Photo URL. */ url?: string; /** * Width of the photo in px. */ width?: number; }