Interface PhotosRemoveTagParams

interface PhotosRemoveTagParams {
    owner_id?: number;
    photo_id: number;
    tag_id: 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.

tag_id: number

Tag ID.

Generated using TypeDoc