Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.39 KB

File metadata and controls

30 lines (21 loc) · 1.39 KB

IntegerMultiConstraintHelperItem

The mirroring configuration that maps this constraint across working-hour boundaries.

Properties

Name Type Description Notes
pairs List[StringIntegerPair] A list of key-value pairs mapping element identifiers to integer values. Used internally to mirror multi-route constraint configurations across working hours.

Example

from touroptimizer_py_client.models.integer_multi_constraint_helper_item import IntegerMultiConstraintHelperItem

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

# convert the object into a dict
integer_multi_constraint_helper_item_dict = integer_multi_constraint_helper_item_instance.to_dict()
# create an instance of IntegerMultiConstraintHelperItem from a dict
integer_multi_constraint_helper_item_from_dict = IntegerMultiConstraintHelperItem.from_dict(integer_multi_constraint_helper_item_dict)

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