Name | Type | Description | Notes |
---|---|---|---|
tenant_id | str | The unique identifier of the tenant | |
ticket_ids | List[str] | The unique identifier of the tickets | |
recommendations | List[RecommendationTicketAPIRequestInput] | The unique identifier of the tenant |
from onelens_backend_client.models.recommendation_ticket_request import RecommendationTicketRequest
# TODO update the JSON string below
json = "{}"
# create an instance of RecommendationTicketRequest from a JSON string
recommendation_ticket_request_instance = RecommendationTicketRequest.from_json(json)
# print the JSON string representation of the object
print(RecommendationTicketRequest.to_json())
# convert the object into a dict
recommendation_ticket_request_dict = recommendation_ticket_request_instance.to_dict()
# create an instance of RecommendationTicketRequest from a dict
recommendation_ticket_request_form_dict = recommendation_ticket_request.from_dict(recommendation_ticket_request_dict)