Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.26 KB

File metadata and controls

37 lines (28 loc) · 1.26 KB

LinkedinUserComment

A comment authored by the target user on someone else's post. Returned by /users/{id}/comments.

Properties

Name Type Description Notes
urn str
text str
create_time int
created_at str
like_count int
reply_count int
is_edited bool
post LinkedinUserCommentPost

Example

from unifapi.models.linkedin_user_comment import LinkedinUserComment

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

# convert the object into a dict
linkedin_user_comment_dict = linkedin_user_comment_instance.to_dict()
# create an instance of LinkedinUserComment from a dict
linkedin_user_comment_from_dict = LinkedinUserComment.from_dict(linkedin_user_comment_dict)

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