Skip to content

Latest commit

History

History
34 lines (25 loc) · 1.39 KB

File metadata and controls

34 lines (25 loc) · 1.39 KB

InviteUserInputBody

Properties

NameTypeDescriptionNotes
creditsintInitial credit balance for the invited user in raw units (1 credit = 1000 units).
emailstrEmail address to invite
first_namestrFirst name included in the invite email and registration URL
last_namestrLast name pre-filled in the registration URL[optional]
team_idintTeam to assign the invited user to[optional]
usernamestrUsername pre-filled in the registration URL[optional]

Example

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]