Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

processing-fee.md

File metadata and controls

30 lines (21 loc) · 1.15 KB

Processing Fee

Represents the Square processing fee.

Structure

ProcessingFee

Fields

Name Type Tags Description Getter
EffectiveAt String Optional The timestamp of when the fee takes effect, in RFC 3339 format. String getEffectiveAt()
Type String Optional The type of fee assessed or adjusted. The fee type can be INITIAL or ADJUSTMENT. String getType()
AmountMoney 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.
Money getAmountMoney()

Example (as JSON)

{
  "effective_at": "effective_at2",
  "type": "type8",
  "amount_money": {
    "amount": 186,
    "currency": "TZS"
  }
}