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: ["customRole1","customRole2"] )