Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

GetRecommendationTicket.md

File metadata and controls

32 lines (23 loc) · 1.19 KB

GetRecommendationTicket

Properties

Name Type Description Notes
recommendation_unit_id str Recommendation Unit ID
potential_saving str Potential Saving
priority int Priority
data List[RecommendationTicket] Data

Example

from onelens_backend_client.models.get_recommendation_ticket import GetRecommendationTicket

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

# convert the object into a dict
get_recommendation_ticket_dict = get_recommendation_ticket_instance.to_dict()
# create an instance of GetRecommendationTicket from a dict
get_recommendation_ticket_form_dict = get_recommendation_ticket.from_dict(get_recommendation_ticket_dict)

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