Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 3.16 KB

File metadata and controls

35 lines (26 loc) · 3.16 KB

InlineResponse200396ResultData

Properties

Name Type Description Notes
description str The resource's UI display name. [optional]
error str An error message, if applicable. [optional]
formatter InlineResponse200396ResultDataFormatter [optional]
id str The resource's reference name. * `disk_usage` * `filesusage` - This function only returns this value if the Display File Usage information in the cPanel stats bar setting is enabled in the Display section of WHM's Tweak Settings interface (WHM >> Home >> Server Configuration >> Tweak Settings). * `cachedmysqldiskusage` * `cachedpostgresdiskusage` - This function only returns this value if PostgreSQL® databases are enabled. * `bandwidth` * `addon_domains` * `subdomains` * `aliases` * `email_accounts` * `mailing_lists` - This function only returns this value if the Mailman service is enabled in WHM's Service Manager interface (WHM >> Home >> Service Configuration >> Service Manager). * `autoresponders` * `forwarders` * `email_filters` * `ftp_accounts` - This function only returns this value if FTP accounts exist on the server. * `mysql_databases` - This function only returns this value if MySQL® databases are enabled. * `postgresql_databases` Note: Certain `id` values may not appear, based on the server's current profile. [optional]
maximum int The resources's maximum usage value. Note: This function returns an null value for an (unlimited) quota. [optional]
url str The resource's defined URL link to its corresponding interface, in applicable. [optional]
usage int The resource's current usage value. [optional]

Example

from clientapi_cpanel.models.inline_response200396_result_data import InlineResponse200396ResultData

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

# convert the object into a dict
inline_response200396_result_data_dict = inline_response200396_result_data_instance.to_dict()
# create an instance of InlineResponse200396ResultData from a dict
inline_response200396_result_data_from_dict = InlineResponse200396ResultData.from_dict(inline_response200396_result_data_dict)

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