Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 952 Bytes

File metadata and controls

27 lines (20 loc) · 952 Bytes

RunnerRunTemplateParameterValue

the value of a Solution Run Template parameter for a Runner

Properties

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]

Example

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

const instance: RunnerRunTemplateParameterValue = {
    parameterId,
    varType,
    value,
    isInherited,
};

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