Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.73 KB

File metadata and controls

38 lines (29 loc) · 1.73 KB

XmlEmployeeFilesCategoryInnerFileInner

Properties

Name Type Description Notes
id int File ID on the `<file>` element. [optional]
name str [optional]
original_file_name str [optional]
size int [optional]
date_created str UTC creation timestamp in `YYYY-MM-DD HH:MM:SS` format. [optional]
created_by str [optional]
share_with_employee str [optional]
can_rename_file str [optional]
can_delete_file str [optional]
can_change_share_with_employee_field_value str [optional]

Example

from bamboohr_sdk.models.xml_employee_files_category_inner_file_inner import XmlEmployeeFilesCategoryInnerFileInner

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

# convert the object into a dict
xml_employee_files_category_inner_file_inner_dict = xml_employee_files_category_inner_file_inner_instance.to_dict()
# create an instance of XmlEmployeeFilesCategoryInnerFileInner from a dict
xml_employee_files_category_inner_file_inner_from_dict = XmlEmployeeFilesCategoryInnerFileInner.from_dict(xml_employee_files_category_inner_file_inner_dict)

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