You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The FTP account's quota in megabytes, with two digits of fractional precision, encoded as a string. `0.00` means that the quota is unlimited. Note: This value is different from the value for `diskquota`.
[optional]
diskused
str
The amount of disk space in megabytes that the account currently uses, with two digits of fractional precision, encoded as a string. Note: This value is the same as the value for `diskused`.
[optional]
accttype
str
The type of FTP account. * `anonymous` * `logaccess` * `main` * `sub`
[optional]
deleteable
int
Whether the function's caller can delete the account. * `1` – The caller can delete the account. * `0` – The caller cannot delete the account.
[optional]
dir
str
The absolute path to the FTP account's document root.
The amount of disk space in megabytes that the account currently uses, with two digits of fractional precision, encoded as a string. Note: This value is the same as the value for `_diskused`.
[optional]
diskusedpercent
int
The percentage of the disk space quota that the account currently uses.
[optional]
diskusedpercent20
int
The percentage of disk space that the account currently uses, rounded in 20 percent increments.
[optional]
htmldir
str
The path to the FTP account's HTML directory.
[optional]
humandiskquota
str
The FTP account's quota, in human-readable format. * `None` — The function returns this value if the account has an unlimited quota. * The quota in megabytes (MB), a space, and the characters `MB`.
[optional]
humandiskused
str
The amount of disk space that the account currently uses, in human-readable format. The function formats this value as the quota's size, a space, and the characters `MB`.
[optional]
login
str
The FTP account username.
[optional]
reldir
str
The path to the FTP account's document root, relative to the cPanel account's home directory.
[optional]
serverlogin
str
The full FTP login username.
[optional]
Example
fromclientapi_cpanel.models.inline_response200254_result_dataimportInlineResponse200254ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200254ResultData from a JSON stringinline_response200254_result_data_instance=InlineResponse200254ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200254ResultData.to_json())
# convert the object into a dictinline_response200254_result_data_dict=inline_response200254_result_data_instance.to_dict()
# create an instance of InlineResponse200254ResultData from a dictinline_response200254_result_data_from_dict=InlineResponse200254ResultData.from_dict(inline_response200254_result_data_dict)