A geographic zone identifier attached to nodes and resources for territory-based routing. Subtypes include numeric zone codes (for general territory partitioning) and UK post codes (for UK-specific postal district matching).
| Name | Type | Description | Notes |
|---|---|---|---|
| type_name | str |
from touroptimizer_py_client.models.zone_code_type import ZoneCodeType
# TODO update the JSON string below
json = "{}"
# create an instance of ZoneCodeType from a JSON string
zone_code_type_instance = ZoneCodeType.from_json(json)
# print the JSON string representation of the object
print(ZoneCodeType.to_json())
# convert the object into a dict
zone_code_type_dict = zone_code_type_instance.to_dict()
# create an instance of ZoneCodeType from a dict
zone_code_type_from_dict = ZoneCodeType.from_dict(zone_code_type_dict)