An object containing the cPanel account's quota.
| Name | Type | Description | Notes |
|---|---|---|---|
| inode_limit | InlineResponse200394ResultDataInodeLimit | [optional] | |
| inodes_remain | InlineResponse200394ResultDataInodesRemain | [optional] | |
| inodes_used | InlineResponse200394ResultDataInodesUsed | [optional] | |
| megabyte_limit | InlineResponse200394ResultDataMegabyteLimit | [optional] | |
| megabytes_remain | InlineResponse200394ResultDataMegabytesRemain | [optional] | |
| megabytes_used | InlineResponse200394ResultDataMegabytesUsed | [optional] | |
| under_inode_limit | int | Whether the account is under its inode limit. * `1` — Under limit. * `0` — Over limit. | [optional] |
| under_megabyte_limit | int | Whether the account is under its disk space limit, in megabytes (MB). * `1` — Under limit. * `0` — Over limit. | [optional] |
| under_quota_overall | int | Whether the account is under both its inode and disk megabyte (MB) limit. * `1` — Under limit. * `0` — Over limit. | [optional] |
from clientapi_cpanel.models.inline_response200394_result_data import InlineResponse200394ResultData
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200394ResultData from a JSON string
inline_response200394_result_data_instance = InlineResponse200394ResultData.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200394ResultData.to_json())
# convert the object into a dict
inline_response200394_result_data_dict = inline_response200394_result_data_instance.to_dict()
# create an instance of InlineResponse200394ResultData from a dict
inline_response200394_result_data_from_dict = InlineResponse200394ResultData.from_dict(inline_response200394_result_data_dict)