Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.83 KB

InlineResponse200527ResultDataAccountsServicesFtp.md

File metadata and controls

32 lines (23 loc) · 1.83 KB

InlineResponse200527ResultDataAccountsServicesFtp

Information about the Subaccount's FTP status.

Properties

Name Type Description Notes
enabled int Whether the Subaccount can access FTP. * `1` — Has FTP service access. * `0` — Does not have FTP service access. [optional]
homedir str The Subaccount's FTP directory, relative to the cPanel account's home directory. [optional]
quota int The Subaccount's FTP maximum disk space quota, in megabytes (MB). * `0` — The account has an unlimited disk space quota. [optional]

Example

from clientapi_cpanel.models.inline_response200527_result_data_accounts_services_ftp import InlineResponse200527ResultDataAccountsServicesFtp

# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200527ResultDataAccountsServicesFtp from a JSON string
inline_response200527_result_data_accounts_services_ftp_instance = InlineResponse200527ResultDataAccountsServicesFtp.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200527ResultDataAccountsServicesFtp.to_json())

# convert the object into a dict
inline_response200527_result_data_accounts_services_ftp_dict = inline_response200527_result_data_accounts_services_ftp_instance.to_dict()
# create an instance of InlineResponse200527ResultDataAccountsServicesFtp from a dict
inline_response200527_result_data_accounts_services_ftp_from_dict = InlineResponse200527ResultDataAccountsServicesFtp.from_dict(inline_response200527_result_data_accounts_services_ftp_dict)

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