Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.88 KB

File metadata and controls

42 lines (33 loc) · 1.88 KB

EmployeeTimesheetEntryTransformer

Properties

Name Type Description Notes
id int Timesheet entry ID [optional]
employee_id int Employee ID [optional]
type str Entry type [optional]
var_date date Date of the timesheet [optional]
start datetime Start time [optional]
end datetime End time [optional]
timezone str Timezone [optional]
hours float Hours worked [optional]
note str Note [optional]
project_info ProjectInfoApiTransformer [optional]
approved_at datetime Approved time [optional]
approved bool Whether the timesheet entry is approved [optional]
created_at datetime Created time [optional]
updated_at datetime Updated time [optional]

Example

from bamboohr_sdk.models.employee_timesheet_entry_transformer import EmployeeTimesheetEntryTransformer

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

# convert the object into a dict
employee_timesheet_entry_transformer_dict = employee_timesheet_entry_transformer_instance.to_dict()
# create an instance of EmployeeTimesheetEntryTransformer from a dict
employee_timesheet_entry_transformer_from_dict = EmployeeTimesheetEntryTransformer.from_dict(employee_timesheet_entry_transformer_dict)

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