Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 745 Bytes

File metadata and controls

28 lines (19 loc) · 745 Bytes

Email2

Properties

Name Type Description Notes

Example

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)

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