The textSolution
| Name | Type | Description | Notes |
|---|---|---|---|
| text_solution | str | The textSolution |
from touroptimizer_py_client.models.text_solution import TextSolution
# TODO update the JSON string below
json = "{}"
# create an instance of TextSolution from a JSON string
text_solution_instance = TextSolution.from_json(json)
# print the JSON string representation of the object
print(TextSolution.to_json())
# convert the object into a dict
text_solution_dict = text_solution_instance.to_dict()
# create an instance of TextSolution from a dict
text_solution_from_dict = TextSolution.from_dict(text_solution_dict)