Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 4.22 KB

InlineResponse200492ResultData.md

File metadata and controls

52 lines (43 loc) · 4.22 KB

InlineResponse200492ResultData

Properties

Name Type Description Notes
count str The queried data's value. [optional]
max str The queried parameter's limit. [optional]
maxed int Whether the queried value reached its maximum value. * `1` — Reached maximum value. * `0` — Has not reached maximum value. [optional]
condition int Whether the queried data's value possesses a conditional requirement. * `1` — Possesses a condition. * `0` — Does not possess a condition. Note: The function will only return this value if it determines that the related statistic meets the subsystem installation requirements. [optional]
count str The queried data's value. [optional]
feature str The queried item's feature name. [optional]
id str The queried item's reference name. [optional]
is_maxed int Whether the queried value has reached its maximum value. * `1` — The queried value has reached its maximum value. * `0` — The queried value has not reached its maximum value. [optional]
item str A human-readable version of the queried item. [optional]
max str The queried value's maximum limit. [optional]
maxed_phrase str The `maketext`-formatted message that the interface displays when the user reaches their maximum allowed value. [optional]
module str The module that retrieved the information. [optional]
name str The display key. [optional]
near_limit_phrase str The `maketext`-formatted message that the interface displays when the user approaches their maximum allowed value. [optional]
normalized int Whether the function normalized the output values. * `1` — Normalized. * `0` — Did not normalize. [optional]
percent int The percentage of value, if applicable. [optional]
percent10 int The percentage of value that the system rounds to the nearest ten, if applicable. [optional]
percent20 int The percentage of value that the system rounds to the nearest twenty, if applicable. [optional]
percent5 int The percentage of value that the system rounds to the nearest five, if applicable. [optional]
phrase str The human-readable name of the queried item. [optional]
role str The queried value's role. * `CalendarContact` * `DNS` * `FileStorage` * `FTP` * `MailLocal` * `MailReceive` * `MailSend` * `MySQL` * `Postgres` * `SpamFilter` * `Webmail` * `WebDisk` * `WebServer` [optional]
rowtype str The queried value's row type. * `even` * `odd` [optional]
units str The queried value's unit of measure. [optional]
zeroisunlimited int Whether a value of `0` means unlimited or zero. * `1` — Unlimited. * `0` — Zero. [optional]

Example

from clientapi_cpanel.models.inline_response200492_result_data import InlineResponse200492ResultData

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

# convert the object into a dict
inline_response200492_result_data_dict = inline_response200492_result_data_instance.to_dict()
# create an instance of InlineResponse200492ResultData from a dict
inline_response200492_result_data_from_dict = InlineResponse200492ResultData.from_dict(inline_response200492_result_data_dict)

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