Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 858 Bytes

File metadata and controls

29 lines (20 loc) · 858 Bytes

LinkedinSkill

Properties

Name Type Description Notes
name str

Example

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)

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