Name | Type | Description | Notes |
---|---|---|---|
address | str | [optional] | |
default | bool | [optional] | |
href | str | [optional] | |
id | str | [optional] | |
verified | bool | [optional] |
from equinix_metal.models.email import Email
# TODO update the JSON string below
json = "{}"
# create an instance of Email from a JSON string
email_instance = Email.from_json(json)
# print the JSON string representation of the object
print(Email.to_json())
# convert the object into a dict
email_dict = email_instance.to_dict()
# create an instance of Email from a dict
email_form_dict = email.from_dict(email_dict)