This object contains information about the subaccount's access to email, FTP, and Web Disk.
| Name | Type | Description | Notes |
|---|---|---|---|
| InlineResponse200535ResultDataServicesEmail | [optional] | ||
| ftp | InlineResponse200535ResultDataServicesFtp | [optional] | |
| webdisk | InlineResponse200535ResultDataServicesWebdisk | [optional] |
from clientapi_cpanel.models.inline_response200535_result_data_services import InlineResponse200535ResultDataServices
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200535ResultDataServices from a JSON string
inline_response200535_result_data_services_instance = InlineResponse200535ResultDataServices.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200535ResultDataServices.to_json())
# convert the object into a dict
inline_response200535_result_data_services_dict = inline_response200535_result_data_services_instance.to_dict()
# create an instance of InlineResponse200535ResultDataServices from a dict
inline_response200535_result_data_services_from_dict = InlineResponse200535ResultDataServices.from_dict(inline_response200535_result_data_services_dict)