Name | Type | Description | Notes |
---|---|---|---|
id | int | [readonly] | |
name | str | Display name | [optional] |
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)