| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | The report title. | [optional] |
| fields | List[RequestCustomReportResponseFieldsInner] | Metadata for each field included in the report. | [optional] |
| employees | List[RequestCustomReportResponseEmployeesInner] | One object per employee. Each object contains an `id` property plus one key per report field. | [optional] |
from bamboohr_sdk.models.get_company_report_response import GetCompanyReportResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetCompanyReportResponse from a JSON string
get_company_report_response_instance = GetCompanyReportResponse.from_json(json)
# print the JSON string representation of the object
print(GetCompanyReportResponse.to_json())
# convert the object into a dict
get_company_report_response_dict = get_company_report_response_instance.to_dict()
# create an instance of GetCompanyReportResponse from a dict
get_company_report_response_from_dict = GetCompanyReportResponse.from_dict(get_company_report_response_dict)