| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| school | str | ||
| degree | str | ||
| grade | str | ||
| var_date | LinkedinDateRange |
from unifapi.models.linkedin_education import LinkedinEducation
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinEducation from a JSON string
linkedin_education_instance = LinkedinEducation.from_json(json)
# print the JSON string representation of the object
print(LinkedinEducation.to_json())
# convert the object into a dict
linkedin_education_dict = linkedin_education_instance.to_dict()
# create an instance of LinkedinEducation from a dict
linkedin_education_from_dict = LinkedinEducation.from_dict(linkedin_education_dict)