Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

File metadata and controls

31 lines (22 loc) · 1.39 KB

ZoneNumberConstraint

A node constraint requiring the visiting resource to hold a ZoneNumberQualification covering this node's zone number. Unmatched assignments produce violations.

Properties

Name Type Description Notes
zone_codes List[ZoneCodeType] The list of numeric zone codes that a resource must be qualified for to visit this node. Used in conjunction with ZoneNumberQualification on the resource side.
type_name str The typeName of the object [default to 'ZoneNumberConstraint']

Example

from touroptimizer_py_client.models.zone_number_constraint import ZoneNumberConstraint

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

# convert the object into a dict
zone_number_constraint_dict = zone_number_constraint_instance.to_dict()
# create an instance of ZoneNumberConstraint from a dict
zone_number_constraint_from_dict = ZoneNumberConstraint.from_dict(zone_number_constraint_dict)

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