Optional lookup dictionaries that map integer-based type identifiers to human-readable type names. Used in conjunction with BitType qualifications and constraints to translate compact bitset representations into meaningful skill or category labels for reporting and debugging purposes.
| Name | Type | Description | Notes |
|---|---|---|---|
| type_dictionaries | List[TypeDictionary] | The optional list of typeDictionaries | [optional] |
from touroptimizer_py_client.models.type_dictionaries import TypeDictionaries
# TODO update the JSON string below
json = "{}"
# create an instance of TypeDictionaries from a JSON string
type_dictionaries_instance = TypeDictionaries.from_json(json)
# print the JSON string representation of the object
print(TypeDictionaries.to_json())
# convert the object into a dict
type_dictionaries_dict = type_dictionaries_instance.to_dict()
# create an instance of TypeDictionaries from a dict
type_dictionaries_from_dict = TypeDictionaries.from_dict(type_dictionaries_dict)