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