This object contains 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 directory. | [optional] |
| quota | int | The subaccount's FTP disk space quota. * `1` to `999999` - The maximum disk space that the subaccount may use, in megabytes (MB). * `0` - Unlimited. | [optional] |
from clientapi_cpanel.models.service_account_services_ftp import ServiceAccountServicesFtp
# TODO update the JSON string below
json = "{}"
# create an instance of ServiceAccountServicesFtp from a JSON string
service_account_services_ftp_instance = ServiceAccountServicesFtp.from_json(json)
# print the JSON string representation of the object
print(ServiceAccountServicesFtp.to_json())
# convert the object into a dict
service_account_services_ftp_dict = service_account_services_ftp_instance.to_dict()
# create an instance of ServiceAccountServicesFtp from a dict
service_account_services_ftp_from_dict = ServiceAccountServicesFtp.from_dict(service_account_services_ftp_dict)