| Name | Type | Description | Notes |
|---|
| credits | int | Initial credit balance in credits (1 credit = 1000 units); defaults to 10 credits | [optional] |
| email | str | Email address | |
| first_name | str | First name | [optional] |
| last_name | str | Last name | [optional] |
| password | str | Initial password | |
| role | str | User role (defaults to USER) | [optional] |
| tier | str | User tier (defaults to ENTHUSIAST) | [optional] |
| time_zone | str | IANA time zone | [optional] |
| username | str | Username | |
fromrevengai.models.create_user_input_bodyimportCreateUserInputBody# TODO update the JSON string belowjson="{}"# create an instance of CreateUserInputBody from a JSON stringcreate_user_input_body_instance=CreateUserInputBody.from_json(json)
# print the JSON string representation of the objectprint(CreateUserInputBody.to_json())
# convert the object into a dictcreate_user_input_body_dict=create_user_input_body_instance.to_dict()
# create an instance of CreateUserInputBody from a dictcreate_user_input_body_from_dict=CreateUserInputBody.from_dict(create_user_input_body_dict)[Back to Model list][Back to API list][Back to README]