Interface PhotosPutTagParams

interface PhotosPutTagParams {
    owner_id?: number;
    photo_id: number;
    user_id: number;
    x?: number;
    x2?: number;
    y?: number;
    y2?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

owner_id?: number

ID of the user or community that owns the photo.

photo_id: number

Photo ID.

user_id: number

ID of the user to be tagged.

x?: number

Upper left-corner coordinate of the tagged area (as a percentage of the photo's width).

x2?: number

Lower right-corner coordinate of the tagged area (as a percentage of the photo's width).

y?: number

Upper left-corner coordinate of the tagged area (as a percentage of the photo's height).

y2?: number

Lower right-corner coordinate of the tagged area (as a percentage of the photo's height).

Generated using TypeDoc