Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

JsonEmployeeFiles

Properties

Name Type Description Notes
employee JsonEmployeeFilesEmployee [optional]
categories List[JsonEmployeeFilesCategoriesInner] [optional]

Example

from bamboohr_sdk.models.json_employee_files import JsonEmployeeFiles

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

# convert the object into a dict
json_employee_files_dict = json_employee_files_instance.to_dict()
# create an instance of JsonEmployeeFiles from a dict
json_employee_files_from_dict = JsonEmployeeFiles.from_dict(json_employee_files_dict)

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