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. | [optional] |
| quota | int | The maximum amount disk space, in megabytes (MB), that the subaccount may use. * A positive integer between `1` and `999999` * `0` - Unlimited. | [optional] |
from clientapi_cpanel.models.edit_user_subaccount_base_services_ftp import EditUserSubaccountBaseServicesFtp
# TODO update the JSON string below
json = "{}"
# create an instance of EditUserSubaccountBaseServicesFtp from a JSON string
edit_user_subaccount_base_services_ftp_instance = EditUserSubaccountBaseServicesFtp.from_json(json)
# print the JSON string representation of the object
print(EditUserSubaccountBaseServicesFtp.to_json())
# convert the object into a dict
edit_user_subaccount_base_services_ftp_dict = edit_user_subaccount_base_services_ftp_instance.to_dict()
# create an instance of EditUserSubaccountBaseServicesFtp from a dict
edit_user_subaccount_base_services_ftp_from_dict = EditUserSubaccountBaseServicesFtp.from_dict(edit_user_subaccount_base_services_ftp_dict)