| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | ||
| description | str | ||
| location | str | ||
| employment_type | str | ||
| var_date | LinkedinDateRange | ||
| company | LinkedinCompanyRef |
from unifapi.models.linkedin_experience import LinkedinExperience
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinExperience from a JSON string
linkedin_experience_instance = LinkedinExperience.from_json(json)
# print the JSON string representation of the object
print(LinkedinExperience.to_json())
# convert the object into a dict
linkedin_experience_dict = linkedin_experience_instance.to_dict()
# create an instance of LinkedinExperience from a dict
linkedin_experience_from_dict = LinkedinExperience.from_dict(linkedin_experience_dict)