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

NameTypeDescriptionNotes
default_team_idintDefault team ID[optional]
first_namestrFirst name[optional]
hide_example_binariesboolHide the Examples tab in the analyses listing[optional]
last_namestrLast name[optional]
time_zonestrIANA time zone[optional]
usernamestrUsername[optional]

Example

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]