Skip to content

Files

Latest commit

6513ad5 · Feb 10, 2017

History

History
33 lines (25 loc) · 1.93 KB

Tender.md

File metadata and controls

33 lines (25 loc) · 1.93 KB

Square.Connect.Model.Tender

Properties

Name Type Description Notes
Id string The tender's unique ID. [optional]
LocationId string The ID of the transaction's associated location. [optional]
TransactionId string The ID of the tender's associated transaction. [optional]
CreatedAt string The time when the tender was created, in RFC 3339 format. [optional]
Note string An optional note associated with the tender at the time of payment. [optional]
AmountMoney Money The amount of the tender. [optional]
ProcessingFeeMoney Money The amount of any Square processing fees applied to the tender. This field is not immediately populated when a new transaction is created. It is usually available after about ten seconds. [optional]
CustomerId string If the tender is associated with a customer or represents a customer's card on file, this is the ID of the associated customer. [optional]
Type TypeEnum The type of tender, such as `CARD` or `CASH`.
CardDetails TenderCardDetails The details of the card tender. This value is present only if the value of `type` is `CARD`. [optional]
CashDetails TenderCashDetails The details of the cash tender. This value is present only if the value of `type` is `CASH`. [optional]

TypeEnum

Name Value
CARD "CARD"
CASH "CASH"
THIRDPARTYCARD "THIRD_PARTY_CARD"
SQUAREGIFTCARD "SQUARE_GIFT_CARD"
NOSALE "NO_SALE"
OTHER "OTHER"

[Back to Model list] [Back to API list] [Back to README]