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
An array of information that corresponds with a text value. Note: The function only returns this value if one exists.
[optional]
level
str
The level that triggers a recommendation to appear, based on Bootstrap 3 alert components. * `primary` * `success` * `info` * `warning` * `danger` Note: * The function only returns this value if one exists. * This return's value only affects the UI if set to `danger`.
[optional]
recommended
bool
The type of recommendation that the interface will return. * `true` - Recommended. * `false` - Not recommended. Note: * The function only returns this value if one exists. * If the function does not return this value, then the interface will display informational text.
[optional]
text
str
The text that the user interface displays.
[optional]
url
str
A URL that provides more information. Note: The function only returns this value if one exists.
[optional]
Example
fromclientapi_cpanel.models.inline_response200588_result_data_value_inner_options_innerimportInlineResponse200588ResultDataValueInnerOptionsInner# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200588ResultDataValueInnerOptionsInner from a JSON stringinline_response200588_result_data_value_inner_options_inner_instance=InlineResponse200588ResultDataValueInnerOptionsInner.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200588ResultDataValueInnerOptionsInner.to_json())
# convert the object into a dictinline_response200588_result_data_value_inner_options_inner_dict=inline_response200588_result_data_value_inner_options_inner_instance.to_dict()
# create an instance of InlineResponse200588ResultDataValueInnerOptionsInner from a dictinline_response200588_result_data_value_inner_options_inner_from_dict=InlineResponse200588ResultDataValueInnerOptionsInner.from_dict(inline_response200588_result_data_value_inner_options_inner_dict)