lemmy-js-client
    Preparing search index...

    Type Alias CommentReport

    A comment report.

    type CommentReport = {
        comment_id: CommentId;
        creator_id: PersonId;
        id: CommentReportId;
        original_comment_text: string;
        published_at: string;
        reason: string;
        resolved: boolean;
        resolver_id?: PersonId;
        updated_at?: string;
        violates_instance_rules: boolean;
    }
    Index

    Properties

    comment_id: CommentId
    creator_id: PersonId
    original_comment_text: string
    published_at: string
    reason: string
    resolved: boolean
    resolver_id?: PersonId
    updated_at?: string
    violates_instance_rules: boolean