| 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 | PricePerUnit | ||
| currency | str | Currency | |
| unit | str | Unit | |
| new_cost | NewCost | ||
| current_cost | CurrentCost | ||
| potential_saving | PotentialSaving | ||
| description | str | Description | |
| begin_range | BeginRange | ||
| end_range | EndRange | ||
| attributes | object | Attributes | |
| source_attributes | object | [optional] | |
| ticket_id | str | The unique identifier of the ticket | |
| id | str | The unique identifier of the ticket | [optional] |
from onelens_backend_client.models.recommendation_ticket_api_request_input import RecommendationTicketAPIRequestInput
# TODO update the JSON string below
json = "{}"
# create an instance of RecommendationTicketAPIRequestInput from a JSON string
recommendation_ticket_api_request_input_instance = RecommendationTicketAPIRequestInput.from_json(json)
# print the JSON string representation of the object
print(RecommendationTicketAPIRequestInput.to_json())
# convert the object into a dict
recommendation_ticket_api_request_input_dict = recommendation_ticket_api_request_input_instance.to_dict()
# create an instance of RecommendationTicketAPIRequestInput from a dict
recommendation_ticket_api_request_input_form_dict = recommendation_ticket_api_request_input.from_dict(recommendation_ticket_api_request_input_dict)