Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.3 KB

File metadata and controls

34 lines (25 loc) · 1.3 KB

UpdateProfileInputBody

Properties

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]

Example

from revengai.models.update_profile_input_body import UpdateProfileInputBody

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

# convert the object into a dict
update_profile_input_body_dict = update_profile_input_body_instance.to_dict()
# create an instance of UpdateProfileInputBody from a dict
update_profile_input_body_from_dict = UpdateProfileInputBody.from_dict(update_profile_input_body_dict)

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