Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.24 KB

File metadata and controls

38 lines (29 loc) · 1.24 KB

LinkedinPostAuthor

Heterogeneous post author — may be a person or a company. username is non-null only for people.

Properties

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

Example

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)

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