| Name | Type | Description | Notes |
|---|---|---|---|
| employee | JsonEmployeeFilesEmployee | [optional] | |
| categories | List[JsonEmployeeFilesCategoriesInner] | [optional] |
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)