Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 792 Bytes

File metadata and controls

24 lines (17 loc) · 792 Bytes

UsersRep

Properties

Name Type Description Notes
_links { [key: string]: Link; } The location and content type of related resources [optional] [default to undefined]
totalCount number The total number of users in the environment [default to undefined]
items Array<UserRecord> Details on the users [default to undefined]

Example

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

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

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