Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.7 KB

RecommendationEngine.md

File metadata and controls

46 lines (37 loc) · 1.7 KB

RecommendationEngine

Properties

Name Type Description Notes
recommendation_unit_id str Recommendation Unit ID
action_type_id int Action Type ID
sequence int Sequence
priority int Priority
effort Effort Effort
instance_type str [optional]
instance_family str [optional]
price_per_unit str Price Per Unit
currency str Currency
unit str Unit
new_cost str New Cost
current_cost str Current Cost
potential_saving str Potential Saving
description str Description
begin_range str Begin Range
end_range str End Range
attributes object Attributes
source_attributes object [optional]

Example

from onelens_backend_client.models.recommendation_engine import RecommendationEngine

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

# convert the object into a dict
recommendation_engine_dict = recommendation_engine_instance.to_dict()
# create an instance of RecommendationEngine from a dict
recommendation_engine_form_dict = recommendation_engine.from_dict(recommendation_engine_dict)

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