Represents a Bitbucket Data Center repository.

interface BitbucketRepository {
    description?: string;
    forkable: boolean;
    id: number;
    links: Record<string, unknown>;
    name: string;
    project: BitbucketProject;
    public: boolean;
    slug: string;
    state: string;
    statusMessage: string;
}

Properties

description?: string
forkable: boolean
id: number
links: Record<string, unknown>
name: string
public: boolean
slug: string
state: string
statusMessage: string