Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 3.46 KB

InlineResponse200254ResultData.md

File metadata and controls

43 lines (34 loc) · 3.46 KB

InlineResponse200254ResultData

Properties

Name Type Description Notes
diskquota str 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. [optional]
diskquota InlineResponse200254ResultDataDiskquota [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]
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

from clientapi_cpanel.models.inline_response200254_result_data import InlineResponse200254ResultData

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

# convert the object into a dict
inline_response200254_result_data_dict = inline_response200254_result_data_instance.to_dict()
# create an instance of InlineResponse200254ResultData from a dict
inline_response200254_result_data_from_dict = InlineResponse200254ResultData.from_dict(inline_response200254_result_data_dict)

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