| Name |
Type |
Description |
Notes |
| username |
str |
Name of the user. |
[optional] |
| full_name |
str |
Full name of the user. |
[optional] |
| email |
str |
Email of the user. |
[optional] |
| is_multiple_ssh_keys |
bool |
Enable multiple SSH keys. |
[optional] |
| active |
bool |
True if user is active. |
[optional] |
| admin |
bool |
Enable user to take privileged actions in the API. (Admin only) |
[optional] |
| locked |
bool |
Lock the user. (Admin only) |
[optional] |
| limits_id |
str |
Usage limits ID applied to the user in the primary org. (Admin only) |
[optional] |
from saturn_api.models.user_update import UserUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of UserUpdate from a JSON string
user_update_instance = UserUpdate.from_json(json)
# print the JSON string representation of the object
print(UserUpdate.to_json())
# convert the object into a dict
user_update_dict = user_update_instance.to_dict()
# create an instance of UserUpdate from a dict
user_update_from_dict = UserUpdate.from_dict(user_update_dict)
[Back to Model list] [Back to API list] [Back to README]