Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

File metadata and controls

33 lines (24 loc) · 1.03 KB

LinkedinEducation

Properties

Name Type Description Notes
id str
school str
degree str
grade str
var_date LinkedinDateRange

Example

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)

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