Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

employee-wage.md

File metadata and controls

32 lines (23 loc) · 1.2 KB

Employee Wage

The hourly wage rate that an employee earns on a Shift for doing the job specified by the title property of this object. Deprecated at version 2020-08-26. Use TeamMemberWage.

Structure

Employee Wage

Fields

Name Type Tags Description
id str Optional The UUID for this object.
employee_id str Optional The Employee that this wage is assigned to.
title str Optional The job title that this wage relates to.
hourly_rate Money Optional Represents an amount of money. Money fields can be signed or unsigned.
Fields that do not explicitly define whether they are signed or unsigned are
considered unsigned and can only hold positive amounts. For signed fields, the
sign of the value indicates the purpose of the money transfer. See
Working with Monetary Amounts
for more information.

Example (as JSON)

{
  "id": "id0",
  "employee_id": "employee_id0",
  "title": "title6",
  "hourly_rate": {
    "amount": 172,
    "currency": "OMR"
  }
}