Skip to main content

NewProjectData

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

Properties

Parameters

NameTypeDescription
projectIdstringUnique identifier for the project stored by the application. This ID is subsequently returned by the getCurrentProject method.
namestringName of the project displayed in the application's top bar. Users can modify this name within the application.
environmentProjectEnvironmentIn versions that support both interior and exterior features (such as fences and gardens), this parameter can be used to specify the initial environment of a new project. If undefined or null, the application will prompt the user to select an environment. This parameter is ignored in applications that do not support multiple environments.

Description

This structure defines the parameters required when creating a new project.