Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.15 KB

File metadata and controls

37 lines (28 loc) · 1.15 KB

LinkedinJobCompany

Properties

Name Type Description Notes
id str
name str
universal_name str
url str
description str
follower_count int
staff_count int
industries List[str]
logo_url str

Example

from unifapi.models.linkedin_job_company import LinkedinJobCompany

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

# convert the object into a dict
linkedin_job_company_dict = linkedin_job_company_instance.to_dict()
# create an instance of LinkedinJobCompany from a dict
linkedin_job_company_from_dict = LinkedinJobCompany.from_dict(linkedin_job_company_dict)

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