Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 865 Bytes

DesiredSkill.md

File metadata and controls

29 lines (20 loc) · 865 Bytes

DesiredSkill

Properties

Name Type Description Notes
skills List[Skill]

Example

from iblai.models.desired_skill import DesiredSkill

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

# convert the object into a dict
desired_skill_dict = desired_skill_instance.to_dict()
# create an instance of DesiredSkill from a dict
desired_skill_from_dict = DesiredSkill.from_dict(desired_skill_dict)

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