Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketParticipant

    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;
        };
    }
    Index

    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;
    }