Interface PhotosReportParams

interface PhotosReportParams {
    owner_id: number;
    photo_id: number;
    reason?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6;
    [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.

reason?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6

Reason for the complaint: '0' - spam, '1' - child pornography, '2' - extremism, '3' - violence, '4' - drug propaganda, '5' - adult material, '6' - insult, abuse, '8' - suicide calls

Generated using TypeDoc