Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.38 KB

File metadata and controls

42 lines (33 loc) · 1.38 KB

LinkedinComment

Properties

Name Type Description Notes
id str
urn str
text str
create_time int
created_at str
like_count int
reply_count int
is_pinned bool
is_edited bool
is_author bool
has_previous_replies bool
previous_replies_token str
reactions List[LinkedinPostReactionsInner]
commenter LinkedinCommentCommenter

Example

from unifapi.models.linkedin_comment import LinkedinComment

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

# convert the object into a dict
linkedin_comment_dict = linkedin_comment_instance.to_dict()
# create an instance of LinkedinComment from a dict
linkedin_comment_from_dict = LinkedinComment.from_dict(linkedin_comment_dict)

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