Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

CompanyFilesResponse

Properties

Name Type Description Notes
categories List[CompanyFilesResponseCategoriesInner] List of company file categories. [optional]

Example

from bamboohr_sdk.models.company_files_response import CompanyFilesResponse

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

# convert the object into a dict
company_files_response_dict = company_files_response_instance.to_dict()
# create an instance of CompanyFilesResponse from a dict
company_files_response_from_dict = CompanyFilesResponse.from_dict(company_files_response_dict)

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