Interface UsersReportParams

interface UsersReportParams {
    comment?: string;
    type: "spam" | "advertisement" | "advertisment" | "fraud" | "insult" | "porn";
    user_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

comment?: string

Comment describing the complaint.

type: "spam" | "advertisement" | "advertisment" | "fraud" | "insult" | "porn"

Type of complaint: 'porn' - pornography, 'spam' - spamming, 'insult' - abusive behavior, 'advertisement' - disruptive advertisements

user_id: number

ID of the user about whom a complaint is being made.

Generated using TypeDoc