Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.19 KB

File metadata and controls

30 lines (23 loc) · 1.19 KB

FlagDefaultsRep

Properties

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]

Example

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]