Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.48 KB

File metadata and controls

32 lines (23 loc) · 1.48 KB

SubaccountBaseServicesFtp

Information about the subaccount's FTP status.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]