the value of a Solution Run Template parameter for a Runner
| Name | Type | Description | Notes |
|---|---|---|---|
| parameterId | string | the parameter Id | [default to undefined] |
| varType | string | the parameter value type | [optional] [default to undefined] |
| value | string | the parameter value | [default to undefined] |
| isInherited | boolean | whether or not the value is inherited from parent or has been changed | [optional] [default to undefined] |
import { RunnerRunTemplateParameterValue } from '@cosmotech/api-ts';
const instance: RunnerRunTemplateParameterValue = {
parameterId,
varType,
value,
isInherited,
};