MergeHRISClient.Model.TimeOff (MergeHRISClient v1.0.0) View Source

The TimeOff Object ### Description The TimeOff object is used to represent a Time Off Request filed by an employee. ### Usage Example Fetch from the LIST TimeOffs endpoint and filter by ID to show all time off requests.

Link to this section Summary

Link to this section Types

Specs

t() :: %MergeHRISClient.Model.TimeOff{
  amount: float() | nil,
  approver: String.t() | nil,
  employee: String.t() | nil,
  employee_note: String.t() | nil,
  end_time: DateTime.t() | nil,
  id: String.t() | nil,
  remote_data: [MergeHRISClient.Model.RemoteData.t()] | nil,
  remote_id: String.t() | nil,
  request_type: RequestTypeEnum | nil,
  start_time: DateTime.t() | nil,
  status: TimeOffStatusEnum | nil,
  units: UnitsEnum | nil
}