Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

LinkedinCompanyHashtagsInner

Properties

Name Type Description Notes
name str
follower_count int

Example

from unifapi.models.linkedin_company_hashtags_inner import LinkedinCompanyHashtagsInner

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

# convert the object into a dict
linkedin_company_hashtags_inner_dict = linkedin_company_hashtags_inner_instance.to_dict()
# create an instance of LinkedinCompanyHashtagsInner from a dict
linkedin_company_hashtags_inner_from_dict = LinkedinCompanyHashtagsInner.from_dict(linkedin_company_hashtags_inner_dict)

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