Type Alias PrivateMessageReport

PrivateMessageReport: {
    creator_id: PersonId;
    id: PrivateMessageReportId;
    original_pm_text: string;
    private_message_id: PrivateMessageId;
    published: string;
    reason: string;
    resolved: boolean;
    resolver_id?: PersonId;
    updated?: string;
}

The private message report.

Type declaration