Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.01 KB

File metadata and controls

25 lines (18 loc) · 1.01 KB

WorkspaceSolution

The Workspace Solution configuration

Properties

Name Type Description Notes
solutionId string The Solution Id attached to this workspace [default to undefined]
datasetId string The Dataset Id attached to this workspace. This dataset will be used to store default values for Solution parameters with file's varType. [optional] [default to undefined]
defaultParameterValues { [key: string]: string; } A map of parameterId/value to set default values for Solution parameters with simple varType (int, string, ...) [optional] [default to undefined]

Example

import { WorkspaceSolution } from '@cosmotech/api-ts';

const instance: WorkspaceSolution = {
    solutionId,
    datasetId,
    defaultParameterValues,
};

[Back to Model list] [Back to API list] [Back to README]