Name | Type | Description | Notes |
---|---|---|---|
created_at | datetime | [optional] | |
href | str | [optional] | |
id | str | [optional] | |
invitation | Href | [optional] | |
invited_by | Href | [optional] | |
invitee | str | [optional] | |
nonce | str | [optional] | |
organization | Href | [optional] | |
projects | List[Href] | [optional] | |
roles | List[str] | [optional] | |
updated_at | datetime | [optional] |
from equinix_metal.models.invitation import Invitation
# TODO update the JSON string below
json = "{}"
# create an instance of Invitation from a JSON string
invitation_instance = Invitation.from_json(json)
# print the JSON string representation of the object
print(Invitation.to_json())
# convert the object into a dict
invitation_dict = invitation_instance.to_dict()
# create an instance of Invitation from a dict
invitation_form_dict = invitation.from_dict(invitation_dict)