Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 902 Bytes

Invites.md

File metadata and controls

31 lines (22 loc) · 902 Bytes

Invites

Properties

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

Example

from hyperstack.models.invites import Invites

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

# convert the object into a dict
invites_dict = invites_instance.to_dict()
# create an instance of Invites from a dict
invites_form_dict = invites.from_dict(invites_dict)

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