Defines a wiki repository which encapsulates the git repository backing the wiki.

interface Wiki {
    headCommit?: string;
    id?: string;
    name?: string;
    projectId?: string;
    repository?: GitRepository;
}

Hierarchy (View Summary)

Properties

headCommit?: string

The head commit associated with the git repository backing up the wiki.

id?: string

The ID of the wiki which is same as the ID of the Git repository that it is backed by.

name?: string

Wiki name.

projectId?: string

ID of the project in which the wiki is to be created.

repository?: GitRepository

The git repository that backs up the wiki.