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

GetInvitesResponseModel

Properties

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

Example

from hyperstack.models.get_invites_response_model import GetInvitesResponseModel

# TODO update the JSON string below
json = "{}"
# create an instance of GetInvitesResponseModel from a JSON string
get_invites_response_model_instance = GetInvitesResponseModel.from_json(json)
# print the JSON string representation of the object
print(GetInvitesResponseModel.to_json())

# convert the object into a dict
get_invites_response_model_dict = get_invites_response_model_instance.to_dict()
# create an instance of GetInvitesResponseModel from a dict
get_invites_response_model_from_dict = GetInvitesResponseModel.from_dict(get_invites_response_model_dict)

[Back to Model list] [Back to API list] [Back to README]