-
Notifications
You must be signed in to change notification settings - Fork 0
Adapters
TESS Payments edited this page Nov 30, 2022
·
1 revision
This page describes the TESS Payments Android SDK adapters.
Adapter maps the raw Payment Platform API Action to the native Android SDK method.
All of the adapters listed in the AkuratecoSDK class as the inner object.
For example, to acquire the SALE adapter, call the following function:
AkuratecoSDK.Adapter.SALE
The acquiring of each Adapter will check the AkuratecoSDK initialization status.
The AkuratecoSdkIsNotInitializedException will be thrown in case of failed initialization.
This is the list of all possible TESS Payments Android SDK Adapters:
| Adapter | Description |
|---|---|
AkuratecoSDK.Adapter.SALE |
Creates SALE or AUTH transaction |
AkuratecoSDK.Adapter.CAPTURE |
Creates CAPTURE transaction |
AkuratecoSDK.Adapter.CREDITVOID |
Creates REVERSAL or REFUND transaction |
AkuratecoSDK.Adapter.GET_TRANS_STATUS |
Gets status of the transaction in Payment Platform |
AkuratecoSDK.Adapter.GET_TRANS_DETAILS |
Gets details of the order from Payment platform |
AkuratecoSDK.Adapter.RECURRING_SALE |
Creates SALE or AUTH transaction using previously used cardholder data |