Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.37 KB

File metadata and controls

33 lines (26 loc) · 1.37 KB

RunTemplateParameterUpdateRequest

A Run Template Parameter for update parameter

Properties

Name Type Description Notes
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% [optional] [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 { RunTemplateParameterUpdateRequest } from '@cosmotech/api-ts';

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

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