Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.5 KB

File metadata and controls

36 lines (27 loc) · 1.5 KB

UserAdminCreate

Properties

Name Type Description Notes
username str Name of the user.
email str Email of the user.
full_name str Full name of the user. [optional]
admin bool Enable user to take privileged actions in the API. [optional] [default to False]
limits_id str Usage limits ID applied to the user in the primary org. [optional]
send_reset_email bool Send password reset to the user's email on create. [optional] [default to True]
locked bool Lock the user. [optional] [default to False]
prevent_duplicate_emails bool Prevent creating user with duplicate email. [optional] [default to False]

Example

from saturn_api.models.user_admin_create import UserAdminCreate

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

# convert the object into a dict
user_admin_create_dict = user_admin_create_instance.to_dict()
# create an instance of UserAdminCreate from a dict
user_admin_create_from_dict = UserAdminCreate.from_dict(user_admin_create_dict)

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