Heterogeneous post author — may be a person or a company. username is non-null only for people.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| urn | str | ||
| username | str | ||
| display_name | str | ||
| headline | str | ||
| url | str | ||
| avatar_url | str | ||
| account_type | str | ||
| follower_count | int |
from unifapi.models.linkedin_post_author import LinkedinPostAuthor
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinPostAuthor from a JSON string
linkedin_post_author_instance = LinkedinPostAuthor.from_json(json)
# print the JSON string representation of the object
print(LinkedinPostAuthor.to_json())
# convert the object into a dict
linkedin_post_author_dict = linkedin_post_author_instance.to_dict()
# create an instance of LinkedinPostAuthor from a dict
linkedin_post_author_from_dict = LinkedinPostAuthor.from_dict(linkedin_post_author_dict)