Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.27 KB

File metadata and controls

35 lines (26 loc) · 1.27 KB

UpdateUserInputBody

Properties

NameTypeDescriptionNotes
emailstrEmail address[optional]
first_namestrFirst name[optional]
last_namestrLast name[optional]
rolestrUser role (SUPERADMIN only)[optional]
tierstrUser tier (SUPERADMIN only)[optional]
time_zonestrIANA time zone[optional]
usernamestrUsername[optional]

Example

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]