Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.51 KB

File metadata and controls

37 lines (28 loc) · 1.51 KB

UpdateRecommendationUnitResponse

Properties

Name Type Description Notes
id str Recommendation Config ID
service str Service AWS etc.
action_type_alias str [optional]
priority int Priority
title str Title
subtitle str Subtitle [optional]
description str Description
effort Effort Effort
query_details RecommendationQueryDetails

Example

from onelens_backend_client.models.update_recommendation_unit_response import UpdateRecommendationUnitResponse

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

# convert the object into a dict
update_recommendation_unit_response_dict = update_recommendation_unit_response_instance.to_dict()
# create an instance of UpdateRecommendationUnitResponse from a dict
update_recommendation_unit_response_form_dict = update_recommendation_unit_response.from_dict(update_recommendation_unit_response_dict)

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