Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.78 KB

File metadata and controls

45 lines (36 loc) · 1.78 KB

LinkedinCompany

Properties

Name Type Description Notes
id str URL slug (LinkedIn's `universal_name`). Use this for every /linkedin/companies/{id}/... endpoint.
company_id str Numeric LinkedIn-internal id. Exposed because LinkedIn pages and ad-library URLs reference it; not needed for any /linkedin/* call.
name str
description str
website_url str
linkedin_url str
is_verified bool
is_active bool
follower_count int
employee_count int
employee_count_range LinkedinEmployeeCountRange
industries List[str]
specialities List[str]
headquarters LinkedinHeadquarters
logo_url str
cover_image_url str
hashtags List[LinkedinCompanyHashtagsInner]

Example

from unifapi.models.linkedin_company import LinkedinCompany

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

# convert the object into a dict
linkedin_company_dict = linkedin_company_instance.to_dict()
# create an instance of LinkedinCompany from a dict
linkedin_company_from_dict = LinkedinCompany.from_dict(linkedin_company_dict)

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