Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 882 Bytes

File metadata and controls

31 lines (22 loc) · 882 Bytes

Invite

Properties

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

Example

from hyperstack.models.invite import Invite

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

# convert the object into a dict
invite_dict = invite_instance.to_dict()
# create an instance of Invite from a dict
invite_form_dict = invite.from_dict(invite_dict)

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