Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.49 KB

File metadata and controls

36 lines (27 loc) · 1.49 KB

NewMemberForm

Properties

Name Type Description Notes
email str The member's email
password str The member's password [optional]
first_name str The member's first name [optional]
last_name str The member's last name [optional]
role str The member's initial role, if you are using a base role for the initial role [optional]
custom_roles List[str] An array of the member's initial roles, if you are using custom roles or preset roles provided by LaunchDarkly [optional]
team_keys List[str] An array of the member's teams [optional]
role_attributes Dict[str, List[str]] [optional]

Example

from launchdarkly_api.models.new_member_form import NewMemberForm

# TODO update the JSON string below
json = "{}"
# create an instance of NewMemberForm from a JSON string
new_member_form_instance = NewMemberForm.from_json(json)
# print the JSON string representation of the object
print(NewMemberForm.to_json())

# convert the object into a dict
new_member_form_dict = new_member_form_instance.to_dict()
# create an instance of NewMemberForm from a dict
new_member_form_from_dict = NewMemberForm.from_dict(new_member_form_dict)

[Back to Model list] [Back to API list] [Back to README]