Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

shift-wage.md

File metadata and controls

32 lines (23 loc) · 1.22 KB

Shift Wage

The hourly wage rate used to compensate an employee for this shift.

Structure

Shift Wage

Fields

Name Type Tags Description
title str Optional The name of the job performed during this shift.
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.
job_id str Optional The id of the job performed during this shift. Square
labor-reporting UIs might group shifts together by id. This cannot be used to retrieve the job.
tip_eligible bool Optional Whether team members are eligible for tips when working this job.

Example (as JSON)

{
  "title": "title6",
  "hourly_rate": {
    "amount": 172,
    "currency": "LAK"
  },
  "job_id": "job_id2",
  "tip_eligible": false
}