| Name | Type | Description | Notes |
|---|---|---|---|
| reports | List[Report] | [optional] | |
| pagination | Pagination | [optional] |
from bamboohr_sdk.models.reports_response import ReportsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ReportsResponse from a JSON string
reports_response_instance = ReportsResponse.from_json(json)
# print the JSON string representation of the object
print(ReportsResponse.to_json())
# convert the object into a dict
reports_response_dict = reports_response_instance.to_dict()
# create an instance of ReportsResponse from a dict
reports_response_from_dict = ReportsResponse.from_dict(reports_response_dict)