Interface PhotosPhotoXtrTagInfo

interface PhotosPhotoXtrTagInfo {
    access_key: string;
    album_id: number;
    date: number;
    has_tags: number | boolean;
    height: number;
    id: number;
    lat: number;
    long: number;
    owner_id: number;
    photo_1280: string;
    photo_130: string;
    photo_2560: string;
    photo_604: string;
    photo_75: string;
    photo_807: string;
    placer_id: number;
    post_id: number;
    sizes: PhotosPhotoSizes[];
    tag_created: number;
    tag_id: number;
    text: string;
    user_id: number;
    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

lat: number

Latitude

long: number

Longitude

owner_id: number

Photo owner's ID

photo_1280: string

URL of image with 1280 px width

photo_130: string

URL of image with 130 px width

photo_2560: string

URL of image with 2560 px width

photo_604: string

URL of image with 604 px width

photo_75: string

URL of image with 75 px width

photo_807: string

URL of image with 807 px width

placer_id: number

ID of the tag creator

post_id: number

Post ID

tag_created: number

Date when tag has been added in Unixtime

tag_id: number

Tag ID

text: string

Photo caption

user_id: number

ID of the user who have uploaded the photo

width: number

Original photo width

Generated using TypeDoc