Compact reference to a company, embedded in jobs and experience records.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| url | str | ||
| logo_url | str |
from unifapi.models.linkedin_company_ref import LinkedinCompanyRef
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinCompanyRef from a JSON string
linkedin_company_ref_instance = LinkedinCompanyRef.from_json(json)
# print the JSON string representation of the object
print(LinkedinCompanyRef.to_json())
# convert the object into a dict
linkedin_company_ref_dict = linkedin_company_ref_instance.to_dict()
# create an instance of LinkedinCompanyRef from a dict
linkedin_company_ref_from_dict = LinkedinCompanyRef.from_dict(linkedin_company_ref_dict)