MergeHRISClient.Model.Tax (MergeHRISClient v1.0.2) View Source

The Tax Object ### Description The Tax object is used to represent a tax for a given employee's payroll run. One run could include several taxes. ### Usage Example Fetch from the LIST Taxes endpoint and filter by ID to show all taxes.

Link to this section Summary

Link to this section Types

Specs

t() :: %MergeHRISClient.Model.Tax{
  amount: float() | nil,
  employee_payroll_run: String.t() | nil,
  employer_tax: boolean() | nil,
  id: String.t() | nil,
  name: String.t() | nil,
  remote_data: [%{optional(String.t()) => AnyType}] | nil
}