A skill type paired with an expertise level. Used in TypeWithExpertiseQualification and TypeWithExpertiseConstraint to model graded skills (e.g. 'Electrician Level 3').
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | The type name that in addition requires a certain expertise level. | |
| level | float | The expertise level | |
| is_min | bool | The boolean isMin. If isMin==true, the level is a minimal level that needs to be fulfilled. |
from touroptimizer_py_client.models.type_with_expertise import TypeWithExpertise
# TODO update the JSON string below
json = "{}"
# create an instance of TypeWithExpertise from a JSON string
type_with_expertise_instance = TypeWithExpertise.from_json(json)
# print the JSON string representation of the object
print(TypeWithExpertise.to_json())
# convert the object into a dict
type_with_expertise_dict = type_with_expertise_instance.to_dict()
# create an instance of TypeWithExpertise from a dict
type_with_expertise_from_dict = TypeWithExpertise.from_dict(type_with_expertise_dict)