Defines a wiki resource.

interface WikiV2 {
    id?: string;
    isDisabled?: boolean;
    mappedPath?: string;
    name?: string;
    projectId?: string;
    properties?: { [key: string]: string };
    remoteUrl?: string;
    repositoryId?: string;
    type?: WikiType;
    url?: string;
    versions?: GitVersionDescriptor[];
}

Hierarchy (View Summary)

Properties

id?: string

ID of the wiki.

isDisabled?: boolean

Is wiki repository disabled

mappedPath?: string

Folder path inside repository which is shown as Wiki. Not required for ProjectWiki type.

name?: string

Wiki name.

projectId?: string

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

properties?: { [key: string]: string }

Properties of the wiki.

remoteUrl?: string

Remote web url to the wiki.

repositoryId?: string

ID of the git repository that backs up the wiki. Not required for ProjectWiki type.

type?: WikiType

Type of the wiki.

url?: string

REST url for this wiki.

Versions of the wiki.