Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 991 Bytes

File metadata and controls

30 lines (21 loc) · 991 Bytes

ReportsResponse

Properties

Name Type Description Notes
reports List[Report] [optional]
pagination Pagination [optional]

Example

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)

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