| Name | Type | Description | Notes |
|---|
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)