Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 942 Bytes

File metadata and controls

26 lines (19 loc) · 942 Bytes

WorkflowTemplateParameter

Properties

Name Type Description Notes
_id string [optional] [default to undefined]
path string The path of the property to parameterize, relative to its parent condition or instruction [optional] [default to undefined]
_default ParameterDefault [optional] [default to undefined]
valid boolean Whether the default value is valid for the target flag and environment [optional] [default to undefined]

Example

import { WorkflowTemplateParameter } from 'launchdarkly-api-typescript';

const instance: WorkflowTemplateParameter = {
    _id,
    path,
    _default,
    valid,
};

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