Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 901 Bytes

File metadata and controls

30 lines (21 loc) · 901 Bytes

ConstraintType

The type

Properties

Name Type Description Notes
type_name str

Example

from touroptimizer_py_client.models.constraint_type import ConstraintType

# TODO update the JSON string below
json = "{}"
# create an instance of ConstraintType from a JSON string
constraint_type_instance = ConstraintType.from_json(json)
# print the JSON string representation of the object
print ConstraintType.to_json()

# convert the object into a dict
constraint_type_dict = constraint_type_instance.to_dict()
# create an instance of ConstraintType from a dict
constraint_type_form_dict = constraint_type.from_dict(constraint_type_dict)

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