Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

TypeWithExpertise

A skill type paired with an expertise level. Used in TypeWithExpertiseQualification and TypeWithExpertiseConstraint to model graded skills (e.g. 'Electrician Level 3').

Properties

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.

Example

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)

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