Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.42 KB

File metadata and controls

31 lines (22 loc) · 1.42 KB

GetCompanyReportResponse

Properties

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]

Example

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)

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