| Name |
Type |
Description |
Notes |
| invite |
InviteFields |
|
[optional] |
| message |
str |
|
[optional] |
| status |
bool |
|
[optional] |
from hyperstack.models.invite_user_response_model import InviteUserResponseModel
# TODO update the JSON string below
json = "{}"
# create an instance of InviteUserResponseModel from a JSON string
invite_user_response_model_instance = InviteUserResponseModel.from_json(json)
# print the JSON string representation of the object
print(InviteUserResponseModel.to_json())
# convert the object into a dict
invite_user_response_model_dict = invite_user_response_model_instance.to_dict()
# create an instance of InviteUserResponseModel from a dict
invite_user_response_model_from_dict = InviteUserResponseModel.from_dict(invite_user_response_model_dict)
[Back to Model list] [Back to API list] [Back to README]