| Name | Type | Description | Notes |
|---|---|---|---|
| str | [optional] | ||
| ftp | int | [optional] | |
| webdisk | str | [optional] |
from clientapi_cpanel.models.services import Services
# TODO update the JSON string below
json = "{}"
# create an instance of Services from a JSON string
services_instance = Services.from_json(json)
# print the JSON string representation of the object
print(Services.to_json())
# convert the object into a dict
services_dict = services_instance.to_dict()
# create an instance of Services from a dict
services_from_dict = Services.from_dict(services_dict)