Information about the subaccount's access to email, FTP, and Web Disk.
| Name | Type | Description | Notes |
|---|---|---|---|
| ServiceAccountServicesEmail | [optional] | ||
| ftp | ServiceAccountServicesFtp | [optional] | |
| special | int | Whether the account is a system-created special account that the user cannot remove. * `1` - A special account. * `0` - Not a special account. | [optional] |
| webdisk | ServiceAccountServicesWebdisk | [optional] |
from clientapi_cpanel.models.service_account_services import ServiceAccountServices
# TODO update the JSON string below
json = "{}"
# create an instance of ServiceAccountServices from a JSON string
service_account_services_instance = ServiceAccountServices.from_json(json)
# print the JSON string representation of the object
print(ServiceAccountServices.to_json())
# convert the object into a dict
service_account_services_dict = service_account_services_instance.to_dict()
# create an instance of ServiceAccountServices from a dict
service_account_services_from_dict = ServiceAccountServices.from_dict(service_account_services_dict)