| Name | Type | Description | Notes |
|---|---|---|---|
| name | str |
from unifapi.models.linkedin_skill import LinkedinSkill
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinSkill from a JSON string
linkedin_skill_instance = LinkedinSkill.from_json(json)
# print the JSON string representation of the object
print(LinkedinSkill.to_json())
# convert the object into a dict
linkedin_skill_dict = linkedin_skill_instance.to_dict()
# create an instance of LinkedinSkill from a dict
linkedin_skill_from_dict = LinkedinSkill.from_dict(linkedin_skill_dict)