LinkedinCommentCommenter
| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| display_name |
str |
|
|
| headline |
str |
|
|
| url |
str |
|
|
| avatar_url |
str |
|
|
from unifapi.models.linkedin_comment_commenter import LinkedinCommentCommenter
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinCommentCommenter from a JSON string
linkedin_comment_commenter_instance = LinkedinCommentCommenter.from_json(json)
# print the JSON string representation of the object
print(LinkedinCommentCommenter.to_json())
# convert the object into a dict
linkedin_comment_commenter_dict = linkedin_comment_commenter_instance.to_dict()
# create an instance of LinkedinCommentCommenter from a dict
linkedin_comment_commenter_from_dict = LinkedinCommentCommenter.from_dict(linkedin_comment_commenter_dict)
[Back to Model list] [Back to API list] [Back to README]