Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

File metadata and controls

34 lines (25 loc) · 1.23 KB

JobSummaryHiringLead

The hiring lead for this job opening

Properties

Name Type Description Notes
employee_id int Employee ID [optional]
first_name str First name [optional]
last_name str Last name [optional]
avatar str URL to avatar image [optional]
job_title object Hiring lead's job title [optional]

Example

from bamboohr_sdk.models.job_summary_hiring_lead import JobSummaryHiringLead

# TODO update the JSON string below
json = "{}"
# create an instance of JobSummaryHiringLead from a JSON string
job_summary_hiring_lead_instance = JobSummaryHiringLead.from_json(json)
# print the JSON string representation of the object
print(JobSummaryHiringLead.to_json())

# convert the object into a dict
job_summary_hiring_lead_dict = job_summary_hiring_lead_instance.to_dict()
# create an instance of JobSummaryHiringLead from a dict
job_summary_hiring_lead_from_dict = JobSummaryHiringLead.from_dict(job_summary_hiring_lead_dict)

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