Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.42 KB

File metadata and controls

35 lines (28 loc) · 1.42 KB

RunTemplateParameterCreateRequest

A Run Template Parameter for creation

Properties

Name Type Description Notes
id string The Parameter id [default to undefined]
description string The parameter description [optional] [default to undefined]
labels { [key: string]: string; } A translated label with key as ISO 639-1 code [optional] [default to undefined]
varType string The variable type for the parameter. Basic types or special type %DATASETID% [default to undefined]
defaultValue string The default value for this parameter [optional] [default to undefined]
minValue string The minimum value for this parameter [optional] [default to undefined]
maxValue string The maximum value for this parameter [optional] [default to undefined]
additionalData { [key: string]: any; } Free form additional data [optional] [default to undefined]

Example

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

const instance: RunTemplateParameterCreateRequest = {
    id,
    description,
    labels,
    varType,
    defaultValue,
    minValue,
    maxValue,
    additionalData,
};

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