| Name | Type | Description | Notes |
|---|
| email | str | Email address | [optional] |
| first_name | str | First name | [optional] |
| last_name | str | Last name | [optional] |
| role | str | User role (SUPERADMIN only) | [optional] |
| tier | str | User tier (SUPERADMIN only) | [optional] |
| time_zone | str | IANA time zone | [optional] |
| username | str | Username | [optional] |
fromrevengai.models.update_user_input_bodyimportUpdateUserInputBody# TODO update the JSON string belowjson="{}"# create an instance of UpdateUserInputBody from a JSON stringupdate_user_input_body_instance=UpdateUserInputBody.from_json(json)
# print the JSON string representation of the objectprint(UpdateUserInputBody.to_json())
# convert the object into a dictupdate_user_input_body_dict=update_user_input_body_instance.to_dict()
# create an instance of UpdateUserInputBody from a dictupdate_user_input_body_from_dict=UpdateUserInputBody.from_dict(update_user_input_body_dict)[Back to Model list][Back to API list][Back to README]