A Parameter Group Create Request for a Run Template
| 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] |
import { RunTemplateParameterGroupCreateRequest } from '@cosmotech/api-ts';
const instance: RunTemplateParameterGroupCreateRequest = {
id,
description,
labels,
additionalData,
parameters,
};