Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 2.49 KB

File metadata and controls

33 lines (24 loc) · 2.49 KB

InlineResponse200588ResultDataValueInnerOptionsInner

Properties

Name Type Description Notes
items List[str] 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

from clientapi_cpanel.models.inline_response200588_result_data_value_inner_options_inner import InlineResponse200588ResultDataValueInnerOptionsInner

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

# convert the object into a dict
inline_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 dict
inline_response200588_result_data_value_inner_options_inner_from_dict = InlineResponse200588ResultDataValueInnerOptionsInner.from_dict(inline_response200588_result_data_value_inner_options_inner_dict)

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