Information about 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 | str | The subaccount's maximum FTP disk space quota, in megabytes (MB). * A string containing a non-negative float. * `0.00` - Unlimited. | [optional] |
from clientapi_cpanel.models.subaccount_base_services_ftp import SubaccountBaseServicesFtp
# TODO update the JSON string below
json = "{}"
# create an instance of SubaccountBaseServicesFtp from a JSON string
subaccount_base_services_ftp_instance = SubaccountBaseServicesFtp.from_json(json)
# print the JSON string representation of the object
print(SubaccountBaseServicesFtp.to_json())
# convert the object into a dict
subaccount_base_services_ftp_dict = subaccount_base_services_ftp_instance.to_dict()
# create an instance of SubaccountBaseServicesFtp from a dict
subaccount_base_services_ftp_from_dict = SubaccountBaseServicesFtp.from_dict(subaccount_base_services_ftp_dict)