Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.38 KB

tender-cash-details.md

File metadata and controls

31 lines (22 loc) · 1.38 KB

Tender Cash Details

Represents the details of a tender with type CASH.

Structure

Tender Cash Details

Fields

Name Type Tags Description
buyer_tendered_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.
change_back_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.

Example (as JSON)

{
  "buyer_tendered_money": {
    "amount": 238,
    "currency": "JMD"
  },
  "change_back_money": {
    "amount": 78,
    "currency": "MUR"
  }
}