Name | Type | Description | Notes |
---|---|---|---|
employee | String | The employee the timesheet entry is for. | [optional] |
hours_worked | Float | The number of hours logged by the employee. | [optional] |
start_time | Time | The time at which the employee started work. | [optional] |
end_time | Time | The time at which the employee ended work. | [optional] |
integration_params | Hash<String, AnyType> | [optional] | |
linked_account_params | Hash<String, AnyType> | [optional] |
require 'merge_hris_client'
instance = MergeHRISClient::TimesheetEntryRequest.new(
employee: d2f972d0-2526-434b-9409-4c3b468e08f0,
hours_worked: 10.0,
start_time: 2020-11-10T00:00Z,
end_time: 2020-11-10T00:10Z,
integration_params: {"unique_integration_field":"unique_integration_field_value"},
linked_account_params: {"unique_linked_account_field":"unique_linked_account_field_value"}
)