| Name | Type | Description | Notes |
|---|
from clientapi_cpanel.models.email2 import Email2
# TODO update the JSON string below
json = "{}"
# create an instance of Email2 from a JSON string
email2_instance = Email2.from_json(json)
# print the JSON string representation of the object
print(Email2.to_json())
# convert the object into a dict
email2_dict = email2_instance.to_dict()
# create an instance of Email2 from a dict
email2_from_dict = Email2.from_dict(email2_dict)