| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| title | str | ||
| description | str | ||
| job_url | str | ||
| location | str | ||
| location_geocode | str | ||
| country_code | str | ||
| state | str | ||
| level | str | ||
| employment_type | str | ||
| is_new | bool | ||
| view_count | int | ||
| apply_count | int | ||
| salary | LinkedinJobSalary | ||
| is_remote_allowed | bool | ||
| listed_at | str | ||
| original_listed_at | str | ||
| expire_at | str | ||
| industries | List[str] | ||
| job_functions | List[str] | ||
| benefits | List[str] | ||
| workplace_types | List[str] | ||
| company | LinkedinJobCompany |
from unifapi.models.linkedin_job import LinkedinJob
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinJob from a JSON string
linkedin_job_instance = LinkedinJob.from_json(json)
# print the JSON string representation of the object
print(LinkedinJob.to_json())
# convert the object into a dict
linkedin_job_dict = linkedin_job_instance.to_dict()
# create an instance of LinkedinJob from a dict
linkedin_job_from_dict = LinkedinJob.from_dict(linkedin_job_dict)