lemmy-js-client
    Preparing search index...

    Type Alias ModLockComment

    When a moderator locks a comment (prevents new replies to a comment or its children).

    type ModLockComment = {
        comment_id: CommentId;
        id: ModLockCommentId;
        locked: boolean;
        mod_person_id: PersonId;
        published_at: string;
        reason: string;
    }
    Index

    Properties

    comment_id: CommentId
    locked: boolean
    mod_person_id: PersonId
    published_at: string
    reason: string