Represents a Bitbucket Data Center user.

interface BitbucketUser {
    active: boolean;
    displayName: string;
    emailAddress: string;
    id: number;
    links: Record<string, unknown>;
    name: string;
    slug: string;
    type: "NORMAL" | "SERVICE";
}

Properties

active: boolean
displayName: string
emailAddress: string
id: number
links: Record<string, unknown>
name: string
slug: string
type: "NORMAL" | "SERVICE"