Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.12 KB

File metadata and controls

29 lines (22 loc) · 1.12 KB

RunTemplateParameterGroupCreateRequest

A Parameter Group Create Request for a Run Template

Properties

Name Type Description Notes
id string The Parameter Group id [default to undefined]
description string A description of the parameter group [optional] [default to undefined]
labels { [key: string]: string; } A translated label with key as ISO 639-1 code [optional] [default to undefined]
additionalData { [key: string]: any; } Free form additional data [optional] [default to undefined]
parameters Array<string> An ordered list of Run Template Parameters [optional] [default to undefined]

Example

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

const instance: RunTemplateParameterGroupCreateRequest = {
    id,
    description,
    labels,
    additionalData,
    parameters,
};

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