| 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] |
import { FeatureFlags } from 'launchdarkly-api-typescript';
const instance: FeatureFlags = {
items,
_links,
totalCount,
totalCountWithDifferences,
};