Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 745 Bytes

File metadata and controls

28 lines (19 loc) · 745 Bytes

Email3

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.email3 import Email3

# TODO update the JSON string below
json = "{}"
# create an instance of Email3 from a JSON string
email3_instance = Email3.from_json(json)
# print the JSON string representation of the object
print(Email3.to_json())

# convert the object into a dict
email3_dict = email3_instance.to_dict()
# create an instance of Email3 from a dict
email3_from_dict = Email3.from_dict(email3_dict)

[Back to Model list] [Back to API list] [Back to README]