Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.7 KB

File metadata and controls

32 lines (23 loc) · 1.7 KB

AbsoluteNodeColorMultiRouteConstraint

A multi-route constraint that enforces per-color capacity limits across multiple working hours of a resource, using absolute (count-based) limits.

Properties

Name Type Description Notes
mirror_item IntegerMultiConstraintHelperItem
absolute_node_color_capacities List[AbsoluteNodeColorCapacity] The per-color capacity limits (absolute count-based) enforced by this multi-route constraint.
type_name str The typeName of the object [default to 'AbsoluteNodeColorMultiRouteConstraint']

Example

from touroptimizer_py_client.models.absolute_node_color_multi_route_constraint import AbsoluteNodeColorMultiRouteConstraint

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

# convert the object into a dict
absolute_node_color_multi_route_constraint_dict = absolute_node_color_multi_route_constraint_instance.to_dict()
# create an instance of AbsoluteNodeColorMultiRouteConstraint from a dict
absolute_node_color_multi_route_constraint_from_dict = AbsoluteNodeColorMultiRouteConstraint.from_dict(absolute_node_color_multi_route_constraint_dict)

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