Interface PhotosPhoto

interface PhotosPhoto {
    access_key: string;
    album_id: number;
    date: number;
    has_tags: number | boolean;
    height: number;
    id: number;
    images: PhotosImage[];
    lat: number;
    long: number;
    owner_id: number;
    photo_256: string;
    place: string;
    post_id: number;
    real_offset: number;
    sizes: PhotosPhotoSizes[];
    square_crop: string;
    text: string;
    user_id: number;
    vertical_align: "top" | "bottom" | "middle";
    width: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

access_key: string

Access key for the photo

album_id: number

Album ID

date: number

Date when uploaded

has_tags: number | boolean

Whether photo has attached tag links

height: number

Original photo height

id: number

Photo ID

images: PhotosImage[]
lat: number

Latitude

long: number

Longitude

owner_id: number

Photo owner's ID

photo_256: string

URL of image with 2560 px width

place: string
post_id: number

Post ID

real_offset: number

Real position of the photo

square_crop: string
text: string

Photo caption

user_id: number

ID of the user who have uploaded the photo

vertical_align: "top" | "bottom" | "middle"

Sets vertical alignment of a photo

width: number

Original photo width

Generated using TypeDoc