| Name | Type | Description | Notes |
|---|
| default_team_id | int | Default team ID | [optional] |
| first_name | str | First name | [optional] |
| hide_example_binaries | bool | Hide the Examples tab in the analyses listing | [optional] |
| last_name | str | Last name | [optional] |
| time_zone | str | IANA time zone | [optional] |
| username | str | Username | [optional] |
fromrevengai.models.update_profile_input_bodyimportUpdateProfileInputBody# TODO update the JSON string belowjson="{}"# create an instance of UpdateProfileInputBody from a JSON stringupdate_profile_input_body_instance=UpdateProfileInputBody.from_json(json)
# print the JSON string representation of the objectprint(UpdateProfileInputBody.to_json())
# convert the object into a dictupdate_profile_input_body_dict=update_profile_input_body_instance.to_dict()
# create an instance of UpdateProfileInputBody from a dictupdate_profile_input_body_from_dict=UpdateProfileInputBody.from_dict(update_profile_input_body_dict)[Back to Model list][Back to API list][Back to README]