Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 719 Bytes

File metadata and controls

28 lines (19 loc) · 719 Bytes

Dest

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.dest import Dest

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

# convert the object into a dict
dest_dict = dest_instance.to_dict()
# create an instance of Dest from a dict
dest_from_dict = Dest.from_dict(dest_dict)

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