Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.1 KB

File metadata and controls

30 lines (23 loc) · 1.1 KB

ViewsMemberSummary

Properties

Name Type Description Notes
_links { [key: string]: ViewsLink; } The location and content type of related resources [default to undefined]
_id string The member's ID [default to undefined]
firstName string The member's first name [optional] [default to undefined]
lastName string The member's last name [optional] [default to undefined]
role string The member's base role. If the member has no additional roles, this role will be in effect. [default to undefined]
email string The member's email address [default to undefined]

Example

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

const instance: ViewsMemberSummary = {
    _links,
    _id,
    firstName,
    lastName,
    role,
    email,
};

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