Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 803 Bytes

Skill.md

File metadata and controls

30 lines (21 loc) · 803 Bytes

Skill

Properties

Name Type Description Notes
id int [readonly]
name str Display name [optional]

Example

from iblai.models.skill import Skill

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

# convert the object into a dict
skill_dict = skill_instance.to_dict()
# create an instance of Skill from a dict
skill_from_dict = Skill.from_dict(skill_dict)

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