@coderabbitai/bitbucket
    Preparing search index...

    Interface RepoCommentDeleted

    A user deletes a comment on a commit in a repository. This payload comes with an event key of repo:comment:deleted.

    interface RepoCommentDeleted {
        actor: repo.commentDeleted.Actor;
        comment: repo.commentDeleted.Comment;
        commit: string;
        date: string;
        eventKey: "repo:comment:deleted";
        repository: repo.commentDeleted.Repository;
    }
    Index

    Properties

    The user who deletes the commit.

    The comment deleted.

    commit: string

    The hash of the commit.

    date: string
    eventKey: "repo:comment:deleted"

    The repository with the commit.