Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

LinkedinExperience

Properties

Name Type Description Notes
title str
description str
location str
employment_type str
var_date LinkedinDateRange
company LinkedinCompanyRef

Example

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)

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