interface Repository {
    forkable: boolean;
    id: number;
    name: string;
    project: pr.merged.Project;
    public: boolean;
    scmId: string;
    slug: string;
    state:
        | undefined
        | "AVAILABLE"
        | "INITIALISATION_FAILED"
        | "INITIALISING"
        | "OFFLINE";
    statusMessage: string;
}

Properties

forkable: boolean
id: number
name: string
project: pr.merged.Project
public: boolean
scmId: string
slug: string
state:
    | undefined
    | "AVAILABLE"
    | "INITIALISATION_FAILED"
    | "INITIALISING"
    | "OFFLINE"
statusMessage: string