| Name |
Type |
Description |
Notes |
| follower_count |
int |
|
|
| connection_count |
int |
|
|
from unifapi.models.linkedin_follower_stats import LinkedinFollowerStats
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinFollowerStats from a JSON string
linkedin_follower_stats_instance = LinkedinFollowerStats.from_json(json)
# print the JSON string representation of the object
print(LinkedinFollowerStats.to_json())
# convert the object into a dict
linkedin_follower_stats_dict = linkedin_follower_stats_instance.to_dict()
# create an instance of LinkedinFollowerStats from a dict
linkedin_follower_stats_from_dict = LinkedinFollowerStats.from_dict(linkedin_follower_stats_dict)
[Back to Model list] [Back to API list] [Back to README]