| Name |
Type |
Description |
Notes |
| email |
string |
The member's email |
[default to undefined] |
| password |
string |
The member's password |
[optional] [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 initial role, if you are using a base role for the initial role |
[optional] [default to undefined] |
| customRoles |
Array<string> |
An array of the member's initial roles, if you are using custom roles or preset roles provided by LaunchDarkly |
[optional] [default to undefined] |
| teamKeys |
Array<string> |
An array of the member's teams |
[optional] [default to undefined] |
| roleAttributes |
{ [key: string]: Array<string>; } |
|
[optional] [default to undefined] |
import { NewMemberForm } from 'launchdarkly-api-typescript';
const instance: NewMemberForm = {
email,
password,
firstName,
lastName,
role,
customRoles,
teamKeys,
roleAttributes,
};
[Back to Model list] [Back to API list] [Back to README]