Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

JobSummaryDepartment

Department information

Properties

Name Type Description Notes
id int Department ID [optional]
label str Department name [optional]

Example

from bamboohr_sdk.models.job_summary_department import JobSummaryDepartment

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

# convert the object into a dict
job_summary_department_dict = job_summary_department_instance.to_dict()
# create an instance of JobSummaryDepartment from a dict
job_summary_department_from_dict = JobSummaryDepartment.from_dict(job_summary_department_dict)

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