Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.12 KB

File metadata and controls

48 lines (39 loc) · 2.12 KB

RecommendationTicketAPIRequestInput

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 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]

Example

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)

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