Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 854 Bytes

File metadata and controls

24 lines (17 loc) · 854 Bytes

ApplicationCollectionRep

Properties

Name Type Description Notes
_links { [key: string]: Link; } The location and content type of related resources [optional] [default to undefined]
items Array<ApplicationRep> A list of applications [optional] [default to undefined]
totalCount number The number of applications [optional] [default to undefined]

Example

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

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

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