A user participating in a pull request (author, reviewer, or participant).

interface BitbucketParticipant {
    approved: boolean;
    role: "AUTHOR" | "REVIEWER" | "PARTICIPANT";
    status: "APPROVED" | "UNAPPROVED" | "NEEDS_WORK";
    user: {
        active: boolean;
        displayName: string;
        emailAddress: string;
        id: number;
        name: string;
        slug: string;
        type: string;
    };
}

Properties

approved: boolean
role: "AUTHOR" | "REVIEWER" | "PARTICIPANT"
status: "APPROVED" | "UNAPPROVED" | "NEEDS_WORK"
user: {
    active: boolean;
    displayName: string;
    emailAddress: string;
    id: number;
    name: string;
    slug: string;
    type: string;
}