Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 843 Bytes

NewMemberForm.md

File metadata and controls

28 lines (22 loc) · 843 Bytes

LaunchDarklyApi::NewMemberForm

Properties

Name Type Description Notes
email String The member's email
password String The member's password [optional]
first_name String The member's first name [optional]
last_name String The member's last name [optional]
role String The member's built-in role [optional]
custom_roles Array<String> An array of the member's custom roles [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::NewMemberForm.new(
  email: sandy@acme.com,
  password: ***,
  first_name: Sandy,
  last_name: Smith,
  role: reader,
  custom_roles: [&quot;customRole1&quot;,&quot;customRole2&quot;]
)