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

Properties

forkable: boolean
hierarchyId: string
id: number
name: string
public: boolean
scmId: string
slug: string
state:
    | undefined
    | "AVAILABLE"
    | "INITIALISATION_FAILED"
    | "INITIALISING"
    | "OFFLINE"
statusMessage: string