NewProjectData
interface NewProjectData
{
projectId: string;
name: string;
environment: ProjectEnvironment;
}
Properties
Name | Type | Description |
---|---|---|
projectId | string | Project ID kept by application. Its then returned by getCurrentProject method. |
name | string | Name of the project. It's displayed on the top bar of the application. User is allowed to change this name inside of the application. |
environment | ProjectEnvironment | In 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.