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 subaccount's FTP disk space quota. * >= `1` - Represents the maximum disk space that the subaccount may use, in megabytes (MB). * `0` - Unlimited. | [optional] |
from clientapi_cpanel.models.inline_response200535_result_data_services_ftp import InlineResponse200535ResultDataServicesFtp
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200535ResultDataServicesFtp from a JSON string
inline_response200535_result_data_services_ftp_instance = InlineResponse200535ResultDataServicesFtp.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200535ResultDataServicesFtp.to_json())
# convert the object into a dict
inline_response200535_result_data_services_ftp_dict = inline_response200535_result_data_services_ftp_instance.to_dict()
# create an instance of InlineResponse200535ResultDataServicesFtp from a dict
inline_response200535_result_data_services_ftp_from_dict = InlineResponse200535ResultDataServicesFtp.from_dict(inline_response200535_result_data_services_ftp_dict)