Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.41 KB

File metadata and controls

34 lines (27 loc) · 1.41 KB

NewMemberForm

Properties

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&#39;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&#39;s teams [optional] [default to undefined]
roleAttributes { [key: string]: Array<string>; } [optional] [default to undefined]

Example

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]