Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.27 KB

File metadata and controls

30 lines (21 loc) · 1.27 KB

TypeDictionaries

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.

Properties

Name Type Description Notes
type_dictionaries List[TypeDictionary] The optional list of typeDictionaries [optional]

Example

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)

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