Represents a Bitbucket Data Center project.

interface BitbucketProject {
    description?: string;
    id: number;
    key: string;
    links: Record<string, unknown>;
    name: string;
    public: boolean;
    type: "NORMAL" | "PERSONAL";
}

Properties

description?: string
id: number
key: string
links: Record<string, unknown>
name: string
public: boolean
type: "NORMAL" | "PERSONAL"