Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

LinkedinAbout

Free-form recency strings displayed on a LinkedIn profile ("joined May 2013", "updated less than 3 months ago"). Source gives no machine-readable form.

Properties

Name Type Description Notes
joined str
contact_information str
profile_photo str

Example

from unifapi.models.linkedin_about import LinkedinAbout

# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinAbout from a JSON string
linkedin_about_instance = LinkedinAbout.from_json(json)
# print the JSON string representation of the object
print(LinkedinAbout.to_json())

# convert the object into a dict
linkedin_about_dict = linkedin_about_instance.to_dict()
# create an instance of LinkedinAbout from a dict
linkedin_about_from_dict = LinkedinAbout.from_dict(linkedin_about_dict)

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