Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.47 KB

File metadata and controls

35 lines (26 loc) · 1.47 KB

XmlEmployeeFilesCategoryInner

Properties

Name Type Description Notes
id int Category ID on the `<category>` element. [optional]
name str [optional]
can_rename_category str [optional]
can_delete_category str [optional]
can_upload_files str [optional]
display_if_empty str [optional]
file List[XmlEmployeeFilesCategoryInnerFileInner] [optional]

Example

from bamboohr_sdk.models.xml_employee_files_category_inner import XmlEmployeeFilesCategoryInner

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

# convert the object into a dict
xml_employee_files_category_inner_dict = xml_employee_files_category_inner_instance.to_dict()
# create an instance of XmlEmployeeFilesCategoryInner from a dict
xml_employee_files_category_inner_from_dict = XmlEmployeeFilesCategoryInner.from_dict(xml_employee_files_category_inner_dict)

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