Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.67 KB

File metadata and controls

41 lines (34 loc) · 1.67 KB

ExpandedFlag

Flag representation for Views API - contains only fields actually used by the Views service

Properties

Name Type Description Notes
key string A unique key used to reference the flag [default to undefined]
name string A human-friendly name for the flag [default to undefined]
description string Description of the flag [optional] [default to undefined]
creationDate number Creation date in milliseconds [optional] [default to undefined]
_version number Version of the flag [optional] [default to undefined]
archived boolean Whether the flag is archived [optional] [default to undefined]
tags Array<string> Tags for the flag [optional] [default to undefined]
temporary boolean Whether the flag is temporary [optional] [default to undefined]
includeInSnippet boolean Whether to include in snippet [optional] [default to undefined]
maintainer ExpandedFlagMaintainer [optional] [default to undefined]
_links ParentAndSelfLinks [optional] [default to undefined]

Example

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

const instance: ExpandedFlag = {
    key,
    name,
    description,
    creationDate,
    _version,
    archived,
    tags,
    temporary,
    includeInSnippet,
    maintainer,
    _links,
};

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