Interface PhotosEditParams

interface PhotosEditParams {
    caption?: string;
    delete_place?: number | boolean;
    foursquare_id?: string;
    latitude?: number;
    longitude?: number;
    owner_id?: number;
    photo_id: number;
    place_str?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

caption?: string

New caption for the photo. If this parameter is not set, it is considered to be equal to an empty string.

delete_place?: number | boolean
foursquare_id?: string
latitude?: number
longitude?: number
owner_id?: number

ID of the user or community that owns the photo.

photo_id: number

Photo ID.

place_str?: string

Generated using TypeDoc