| Name |
Type |
Description |
Notes |
| email |
str |
The email for sending invitation. |
|
from hyperstack.models.invite_user_payload import InviteUserPayload
# TODO update the JSON string below
json = "{}"
# create an instance of InviteUserPayload from a JSON string
invite_user_payload_instance = InviteUserPayload.from_json(json)
# print the JSON string representation of the object
print(InviteUserPayload.to_json())
# convert the object into a dict
invite_user_payload_dict = invite_user_payload_instance.to_dict()
# create an instance of InviteUserPayload from a dict
invite_user_payload_from_dict = InviteUserPayload.from_dict(invite_user_payload_dict)
[Back to Model list] [Back to API list] [Back to README]