MoveProjectToWorkspaceArgs
type MoveProjectToWorkspaceArgs = {
access?: {
visibility: ProjectVisibility;
};
folderId?: string | null;
projectId: string;
workspaceId: string;
};
Arguments for moving a project to a workspace.
Properties
access?
optional access: {
visibility: ProjectVisibility;
};
Optional access settings for the project in the workspace.
| Name | Type |
|---|---|
visibility | ProjectVisibility |
folderId?
optional folderId: string | null;
Optional target folder ID within the workspace.
projectId
projectId: string;
The ID of the project to move.
workspaceId
workspaceId: string;
The target workspace ID.