| Name | Type | Description | Notes |
|---|
| credits | int | Initial credit balance for the invited user in raw units (1 credit = 1000 units). | |
| email | str | Email address to invite | |
| first_name | str | First name included in the invite email and registration URL | |
| last_name | str | Last name pre-filled in the registration URL | [optional] |
| team_id | int | Team to assign the invited user to | [optional] |
| username | str | Username pre-filled in the registration URL | [optional] |
fromrevengai.models.invite_user_input_bodyimportInviteUserInputBody# TODO update the JSON string belowjson="{}"# create an instance of InviteUserInputBody from a JSON stringinvite_user_input_body_instance=InviteUserInputBody.from_json(json)
# print the JSON string representation of the objectprint(InviteUserInputBody.to_json())
# convert the object into a dictinvite_user_input_body_dict=invite_user_input_body_instance.to_dict()
# create an instance of InviteUserInputBody from a dictinvite_user_input_body_from_dict=InviteUserInputBody.from_dict(invite_user_input_body_dict)[Back to Model list][Back to API list][Back to README]