The EmployeePayrollRun Object ### Description The EmployeePayrollRun
object is used to represent a payroll run for a specific employee. ### Usage Example Fetch from the LIST EmployeePayrollRun
endpoint and filter by ID
to show all employee payroll runs.
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | [optional] [readonly] | |
remoteId | String | The third-party API ID of the matching object. | [optional] |
employee | UUID | [optional] | |
payrollRun | UUID | [optional] | |
grossPay | Float | The gross pay from the run. | [optional] |
netPay | Float | The net pay from the run. | [optional] |
startDate | OffsetDateTime | The day and time the payroll run started. | [optional] |
endDate | OffsetDateTime | The day and time the payroll run ended. | [optional] |
checkDate | OffsetDateTime | The day and time the payroll run was checked. | [optional] |
earnings | List<Earning> | [optional] [readonly] | |
deductions | List<Deduction> | [optional] [readonly] | |
taxes | List<Tax> | [optional] [readonly] | |
remoteData | List<RemoteData> | [optional] [readonly] | |
remoteWasDeleted | Boolean | Indicates whether or not this object has been deleted on the third-party. | [optional] [readonly] |