Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.16 KB

File metadata and controls

36 lines (29 loc) · 1.16 KB

FormVariable

Properties

Name Type Description Notes
key string [optional] [default to undefined]
name string [optional] [default to undefined]
type string [optional] [default to undefined]
description string [optional] [default to undefined]
placeholder string [optional] [default to undefined]
isOptional boolean [optional] [default to undefined]
defaultValue any [optional] [default to undefined]
allowedValues Array<string> [optional] [default to undefined]
dynamicOptions DynamicOptions [optional] [default to undefined]

Example

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

const instance: FormVariable = {
    key,
    name,
    type,
    description,
    placeholder,
    isOptional,
    defaultValue,
    allowedValues,
    dynamicOptions,
};

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