| 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] |
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]