Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

LinkedinSearchPostAuthor

Properties

Name Type Description Notes
display_name str
headline str
url str

Example

from unifapi.models.linkedin_search_post_author import LinkedinSearchPostAuthor

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

# convert the object into a dict
linkedin_search_post_author_dict = linkedin_search_post_author_instance.to_dict()
# create an instance of LinkedinSearchPostAuthor from a dict
linkedin_search_post_author_from_dict = LinkedinSearchPostAuthor.from_dict(linkedin_search_post_author_dict)

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