Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

InviteUserResponseModel

Properties

Name Type Description Notes
invite InviteFields [optional]
message str [optional]
status bool [optional]

Example

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]