Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

LinkedinPostReactionsInner

Properties

Name Type Description Notes
type str
count int

Example

from unifapi.models.linkedin_post_reactions_inner import LinkedinPostReactionsInner

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

# convert the object into a dict
linkedin_post_reactions_inner_dict = linkedin_post_reactions_inner_instance.to_dict()
# create an instance of LinkedinPostReactionsInner from a dict
linkedin_post_reactions_inner_from_dict = LinkedinPostReactionsInner.from_dict(linkedin_post_reactions_inner_dict)

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