Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.05 KB

File metadata and controls

33 lines (24 loc) · 1.05 KB

LinkedinCompanyRef

Compact reference to a company, embedded in jobs and experience records.

Properties

Name Type Description Notes
id str
name str
url str
logo_url str

Example

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)

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