Skip to main content

NewProjectData

interface NewProjectData
{
projectId: string;
name: string;
environment: ProjectEnvironment;
}

Properties

NameTypeDescription
projectIdstringProject ID kept by application. Its then returned by getCurrentProject method.
namestringName of the project. It's displayed on the top bar of the application. User is allowed to change this name inside of the application.
environmentProjectEnvironmentIn versions with interior and exterior (fences, gardens) support, it's possible to force the environment of a new project. When this parameter is undefined or null, the application will ask user to select the environment. In application without multiple environments, this parameter is ignored

Description

This structure contains parameters of newly created project.