Free-form recency strings displayed on a LinkedIn profile ("joined May 2013", "updated less than 3 months ago"). Source gives no machine-readable form.
| Name | Type | Description | Notes |
|---|---|---|---|
| joined | str | ||
| contact_information | str | ||
| profile_photo | str |
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)