Represents the transactions types that may be supported by PaymentGatewayProvider classes. Not all transaction types are supported by all providers.

Namespace:  Asi.iBO.Commerce
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public enum TransactionType
Visual Basic (Declaration)
Public Enumeration TransactionType
Visual C++
public enum class TransactionType

Members

Member nameDescription
Sale
Regular sales transaction. Upon receiving an authorization, the transaction is typically scheduled immediately for settlement.
Credit
Used to transfer funds from the merchant's account back to a customer's credit card.
Authorization
Authorizes funds and places a hold on the "open to buy" for a customer's credit card account.
DelayedCapture
Uses the information from an authorization transaction to bill a customer's credit card.
Void
Voids a single sale, delayed capture or credit transaction so that it will not settle. If you void a delayed capture, you also void the corresponding authorization.
VoiceAuthorization
A transaction type, which may be performed after obtaining an approval code from the cardholder's issuing bank. Once a voice authorization has been approved, it is treated like a sale or a delayed capture transaction.
Inquiry
Inquire about a transaction

See Also