Interface Project

interface Project {
    id: string;
    name: string;
    path: string;
    rootId: string;
    title: string;
}

Properties

Properties

id: string

GUID of this project.

name: string

Name of the project. This is used in the project's container path.

path: string

Path of this project.

rootId: string

GUID of the root container, which is the parent for the project.

title: string

Title of the project. If none set, this will be the same as the project name.