| Name |
Type |
Description |
Notes |
| _links |
{ [key: string]: Link; } |
The location and content type of related resources |
[optional] [default to undefined] |
| key |
string |
A unique key for the flag default |
[optional] [default to undefined] |
| tags |
Array<string> |
A list of default tags for each flag |
[optional] [default to undefined] |
| temporary |
boolean |
Whether the flag should be temporary by default |
[optional] [default to undefined] |
| defaultClientSideAvailability |
ClientSideAvailability |
|
[optional] [default to undefined] |
| booleanDefaults |
BooleanDefaults |
|
[optional] [default to undefined] |
import { FlagDefaultsRep } from 'launchdarkly-api-typescript';
const instance: FlagDefaultsRep = {
_links,
key,
tags,
temporary,
defaultClientSideAvailability,
booleanDefaults,
};
[Back to Model list] [Back to API list] [Back to README]