Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 878 Bytes

ReportedSkill.md

File metadata and controls

29 lines (20 loc) · 878 Bytes

ReportedSkill

Properties

Name Type Description Notes
skills List[Skill]

Example

from iblai.models.reported_skill import ReportedSkill

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

# convert the object into a dict
reported_skill_dict = reported_skill_instance.to_dict()
# create an instance of ReportedSkill from a dict
reported_skill_from_dict = ReportedSkill.from_dict(reported_skill_dict)

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