Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

File metadata and controls

33 lines (24 loc) · 1.1 KB

LinkedinCommentCommenter

Properties

Name Type Description Notes
id str
display_name str
headline str
url str
avatar_url str

Example

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]