Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.04 KB

File metadata and controls

26 lines (19 loc) · 1.04 KB

FeatureFlags

Properties

Name Type Description Notes
items Array<FeatureFlag> An array of feature flags [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [default to undefined]
totalCount number The total number of flags [optional] [default to undefined]
totalCountWithDifferences number The number of flags that have differences between environments. Only shown when query parameter <code>compare</code> is <code>true</code>. [optional] [default to undefined]

Example

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

const instance: FeatureFlags = {
    items,
    _links,
    totalCount,
    totalCountWithDifferences,
};

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