Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.67 KB

File metadata and controls

31 lines (22 loc) · 1.67 KB

TypeWithExpertiseQualification

A string-based skill qualification with expertise levels. Declares a list of type-name/expertise pairs that the resource offers. Matched against TypeWithExpertiseConstraint on nodes to verify both skill presence and required expertise thresholds.

Properties

Name Type Description Notes
types_with_expertise List[TypeWithExpertise] A list of user-provided type-names and expertise levels. A Constraint type-name with its required expertise must be fulfill by the type-with-expertise Qualification to result in a violation free solution.
type_name str The typeName of the object [default to 'TypeWithExpertise']

Example

from touroptimizer_py_client.models.type_with_expertise_qualification import TypeWithExpertiseQualification

# TODO update the JSON string below
json = "{}"
# create an instance of TypeWithExpertiseQualification from a JSON string
type_with_expertise_qualification_instance = TypeWithExpertiseQualification.from_json(json)
# print the JSON string representation of the object
print(TypeWithExpertiseQualification.to_json())

# convert the object into a dict
type_with_expertise_qualification_dict = type_with_expertise_qualification_instance.to_dict()
# create an instance of TypeWithExpertiseQualification from a dict
type_with_expertise_qualification_from_dict = TypeWithExpertiseQualification.from_dict(type_with_expertise_qualification_dict)

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