Compact job record used in /companies/{id}/jobs and /search/jobs.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| title | str | ||
| job_url | str | ||
| listed_at | str | ||
| is_promoted | bool | ||
| is_easy_apply | bool | ||
| location | str | ||
| company | LinkedinJobListingCompany |
from unifapi.models.linkedin_job_listing import LinkedinJobListing
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinJobListing from a JSON string
linkedin_job_listing_instance = LinkedinJobListing.from_json(json)
# print the JSON string representation of the object
print(LinkedinJobListing.to_json())
# convert the object into a dict
linkedin_job_listing_dict = linkedin_job_listing_instance.to_dict()
# create an instance of LinkedinJobListing from a dict
linkedin_job_listing_from_dict = LinkedinJobListing.from_dict(linkedin_job_listing_dict)