| Name |
Type |
Description |
Notes |
| created_at |
datetime |
|
[optional] |
| email |
str |
|
[optional] |
| id |
int |
|
[optional] |
| status |
str |
|
[optional] |
from hyperstack.models.invite_fields import InviteFields
# TODO update the JSON string below
json = "{}"
# create an instance of InviteFields from a JSON string
invite_fields_instance = InviteFields.from_json(json)
# print the JSON string representation of the object
print(InviteFields.to_json())
# convert the object into a dict
invite_fields_dict = invite_fields_instance.to_dict()
# create an instance of InviteFields from a dict
invite_fields_from_dict = InviteFields.from_dict(invite_fields_dict)
[Back to Model list] [Back to API list] [Back to README]