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

Properties

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