Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 930 Bytes

File metadata and controls

24 lines (17 loc) · 930 Bytes

ApplicationVersionsCollectionRep

Properties

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

Example

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

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

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