An object containing the information that indicates the subaccount's FTP status.
| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | int | Whether the subaccount can access FTP. * `1` - Can access. * `0` - Cannot access. | [optional] |
| homedir | str | The subaccount's FTP home directory relative to the cPanel account's home. | [optional] |
| quota | int | The subaccount's FTP disk space quota. * `0` - Unlimited. | [optional] |
from clientapi_cpanel.models.inline_response200532_result_services_ftp import InlineResponse200532ResultServicesFtp
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200532ResultServicesFtp from a JSON string
inline_response200532_result_services_ftp_instance = InlineResponse200532ResultServicesFtp.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200532ResultServicesFtp.to_json())
# convert the object into a dict
inline_response200532_result_services_ftp_dict = inline_response200532_result_services_ftp_instance.to_dict()
# create an instance of InlineResponse200532ResultServicesFtp from a dict
inline_response200532_result_services_ftp_from_dict = InlineResponse200532ResultServicesFtp.from_dict(inline_response200532_result_services_ftp_dict)