Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.23 KB

File metadata and controls

37 lines (28 loc) · 1.23 KB

LinkedinJobListing

Compact job record used in /companies/{id}/jobs and /search/jobs.

Properties

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

Example

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)

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