Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.51 KB

CreateRecommendationUnitResponse.md

File metadata and controls

37 lines (28 loc) · 1.51 KB

CreateRecommendationUnitResponse

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.create_recommendation_unit_response import CreateRecommendationUnitResponse

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

# convert the object into a dict
create_recommendation_unit_response_dict = create_recommendation_unit_response_instance.to_dict()
# create an instance of CreateRecommendationUnitResponse from a dict
create_recommendation_unit_response_form_dict = create_recommendation_unit_response.from_dict(create_recommendation_unit_response_dict)

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