OrderTransactionType
Indicates the purpose of a given OrderTransaction.
enum OrderTransactionType {
AUTHORIZATION
CAPTURE
REFUND
SALE
VOID
}
Values
OrderTransactionType.AUTHORIZATION
Money that the customer has agreed to pay. The authorization period can be between 7 and 30 days (depending on your payment service) while a store waits for a payment to be captured.
OrderTransactionType.CAPTURE
A transfer of money that was reserved during the authorization of a shop.
OrderTransactionType.REFUND
The partial or full return of captured money to the customer.
OrderTransactionType.SALE
The authorization and capture of a payment performed in one single step.
OrderTransactionType.VOID
The cancellation of a pending authorization or capture.
Member of
CheckoutOrderTransactionInput
input ● PublicOrderTransaction
object