Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 745 Bytes

Email4.md

File metadata and controls

28 lines (19 loc) · 745 Bytes

Email4

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.email4 import Email4

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

# convert the object into a dict
email4_dict = email4_instance.to_dict()
# create an instance of Email4 from a dict
email4_from_dict = Email4.from_dict(email4_dict)

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