Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

EmployeeResponse

Properties

Name Type Description Notes
data List[object] [optional]
aggregations List[EmployeeResponseAggregationsInner] [optional]
pagination Pagination [optional]

Example

from bamboohr_sdk.models.employee_response import EmployeeResponse

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

# convert the object into a dict
employee_response_dict = employee_response_instance.to_dict()
# create an instance of EmployeeResponse from a dict
employee_response_from_dict = EmployeeResponse.from_dict(employee_response_dict)

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