Interface VideoReportParams

interface VideoReportParams {
    comment?: string;
    owner_id: number;
    reason?: 0 | 2 | 1 | 4 | 8 | 5 | 6 | 10 | 12 | 9 | 11 | 13 | 15 | 27 | 41 | 42 | 43 | 101;
    search_query?: string;
    video_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

comment?: string

Comment describing the complaint.

owner_id: number

ID of the user or community that owns the video.

reason?: 0 | 2 | 1 | 4 | 8 | 5 | 6 | 10 | 12 | 9 | 11 | 13 | 15 | 27 | 41 | 42 | 43 | 101

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

search_query?: string

(If the video was found in search results.) Search query string.

video_id: number

Video ID.

Generated using TypeDoc