Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 903 Bytes

File metadata and controls

30 lines (21 loc) · 903 Bytes

TextSolution

The textSolution

Properties

Name Type Description Notes
text_solution str The textSolution

Example

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)

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