| 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] |
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]