Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 944 Bytes

File metadata and controls

24 lines (17 loc) · 944 Bytes

ApplicationFlagCollectionRep

Properties

Name Type Description Notes
items Array<FlagListingRep> A list of the flags that have been evaluated by the application [optional] [default to undefined]
totalCount number The number of flags that have been evaluated by the application [optional] [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [optional] [default to undefined]

Example

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

const instance: ApplicationFlagCollectionRep = {
    items,
    totalCount,
    _links,
};

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