Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.28 KB

InlineResponse200588ResultDataValueInner.md

File metadata and controls

34 lines (25 loc) · 2.28 KB

InlineResponse200588ResultDataValueInner

Properties

Name Type Description Notes
desc str The recommendation's description. 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]
name str The recommendation's name. [optional]
on str The action that triggers a recommendation. * `add` * `remove` [optional]
options List[InlineResponse200588ResultDataValueInnerOptionsInner] An object that contains each option for the package's recommendations. [optional]
url str A URL to provide more information. Note: The function only returns this value if one exists. [optional]

Example

from clientapi_cpanel.models.inline_response200588_result_data_value_inner import InlineResponse200588ResultDataValueInner

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

# convert the object into a dict
inline_response200588_result_data_value_inner_dict = inline_response200588_result_data_value_inner_instance.to_dict()
# create an instance of InlineResponse200588ResultDataValueInner from a dict
inline_response200588_result_data_value_inner_from_dict = InlineResponse200588ResultDataValueInner.from_dict(inline_response200588_result_data_value_inner_dict)

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