| Name | Type | Description | Notes |
|---|---|---|---|
| str |
from hyperstack.models.invite_user import InviteUser
# TODO update the JSON string below
json = "{}"
# create an instance of InviteUser from a JSON string
invite_user_instance = InviteUser.from_json(json)
# print the JSON string representation of the object
print InviteUser.to_json()
# convert the object into a dict
invite_user_dict = invite_user_instance.to_dict()
# create an instance of InviteUser from a dict
invite_user_form_dict = invite_user.from_dict(invite_user_dict)