A comment authored by the target user on someone else's post. Returned by /users/{id}/comments.
| 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 |
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)