Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.46 KB

cash-drawer-shift-event.md

File metadata and controls

33 lines (25 loc) · 1.46 KB

Cash Drawer Shift Event

Structure

Cash Drawer Shift Event

Fields

Name Type Tags Description
id str Optional The unique ID of the event.
event_type str (Cash Drawer Event Type) Optional The types of events on a CashDrawerShift.
Each event type represents an employee action on the actual cash drawer
represented by a CashDrawerShift.
event_money 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.
created_at str Optional The event time in RFC 3339 format.
description str Optional An optional description of the event, entered by the employee that
created the event.
team_member_id str Optional The ID of the team member that created the event.

Example (as JSON)

{
  "id": "id6",
  "event_type": "OTHER_TENDER_PAYMENT",
  "event_money": {
    "amount": 148,
    "currency": "AMD"
  },
  "created_at": "created_at4",
  "description": "description6"
}