Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketProject

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

    Properties

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