diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/index.html new file mode 100644 index 0000000..75d771f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/index.html @@ -0,0 +1,91 @@ + + + + TransactionListener + + +
+
+ + +
+
+
+
+
+
+ +
+

TransactionListener

+
interface TransactionListener

Implement TransactionListener to be notified when a transaction ends. TransactionListener will notify you about the success, error or cancel state of the processed transaction.

+
+
+
+
+

Functions

+
+
+
+
onTransactionCancel +
Link copied to clipboard
+
+
+
+ +
+
open fun onTransactionCancel()
+
+
This is called after a transaction has been cancelled.
+
+
+
+
+ +
+
+
onTransactionError +
Link copied to clipboard
+
+
+
+ +
+
abstract fun onTransactionError(exception: TransactionException)
+
+
This is called after a transaction fails or encounters an error.
+
+
+
+
+ +
+
+
onTransactionSuccess +
Link copied to clipboard
+
+
+
+ +
+
abstract fun onTransactionSuccess(result: TransactionSuccess)
+
+
This is called after a transaction has been successfully completed.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-cancel.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-cancel.html new file mode 100644 index 0000000..c5fa882 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-cancel.html @@ -0,0 +1,38 @@ + + + + onTransactionCancel + + +
+
+ + +
+
+
+
+
+
+ +
+

onTransactionCancel

+
+
+ +
+
open fun onTransactionCancel()
+
+

This is called after a transaction has been cancelled. This callback can be used to cancel any on-going process involving the transaction.

Some payment methods - such as Twint that involves an app-switch - also call this method when a payment error or decline occurs, to prevent showing an error dialog twice, as an error is already displayed in the payment application.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-error.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-error.html new file mode 100644 index 0000000..9a39544 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-error.html @@ -0,0 +1,38 @@ + + + + onTransactionError + + +
+
+ + +
+
+
+
+
+
+ +
+

onTransactionError

+
+
+ +
+
abstract fun onTransactionError(exception: TransactionException)
+
+

This is called after a transaction fails or encounters an error. Keep in mind that the SDK shows the error to the user before this is invoked. Therefore, this callback can be used to cancel any on-going process involving the transaction.

You may also use the error details provided here and display it the way you want when suppressing the error message within the TransactionOptions.

Parameters

exception

The exception that occurred.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-success.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-success.html new file mode 100644 index 0000000..ea1f822 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-success.html @@ -0,0 +1,38 @@ + + + + onTransactionSuccess + + +
+
+ + +
+
+
+
+
+
+ +
+

onTransactionSuccess

+
+
+ +
+
abstract fun onTransactionSuccess(result: TransactionSuccess)
+
+

This is called after a transaction has been successfully completed. This callback provides details about the transaction.

Parameters

result

The object including the information related to the transaction success.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/-transaction-options.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/-transaction-options.html new file mode 100644 index 0000000..43967f7 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/-transaction-options.html @@ -0,0 +1,38 @@ + + + + TransactionOptions + + +
+
+ + +
+
+
+
+
+
+ +
+

TransactionOptions

+
+
+ +
+
fun TransactionOptions()
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/app-callback-scheme.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/app-callback-scheme.html new file mode 100644 index 0000000..3ab6ab1 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/app-callback-scheme.html @@ -0,0 +1,38 @@ + + + + appCallbackScheme + + +
+
+ + +
+
+
+
+
+
+ +
+

appCallbackScheme

+
+
+ +
+
var appCallbackScheme: String? = null
+
+

Your unique callback scheme to be used by the external web process (for example PayPal) to return to the merchant app.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/google-pay-config.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/google-pay-config.html new file mode 100644 index 0000000..1f79848 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/google-pay-config.html @@ -0,0 +1,38 @@ + + + + googlePayConfig + + +
+
+ + +
+
+
+
+
+
+ +
+

googlePayConfig

+
+
+ +
+
var googlePayConfig: GooglePayConfig? = null
+
+

Specify the GooglePayConfig object here. This is mandatory for Google Pay transactions.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/index.html new file mode 100644 index 0000000..9922683 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/index.html @@ -0,0 +1,133 @@ + + + + TransactionOptions + + +
+
+ + +
+
+
+
+
+
+ +
+

TransactionOptions

+
class TransactionOptions

This class can be used to specify miscellaneous options related to the transaction.

+
+
+
+
+

Constructors

+
+
+
+
TransactionOptions +
Link copied to clipboard
+
+
+
+
fun TransactionOptions()
+
+
+
+
+
+

Properties

+
+
+
+
appCallbackScheme +
Link copied to clipboard
+
+
+
+
var appCallbackScheme: String? = null
Your unique callback scheme to be used by the external web process (for example PayPal) to return to the merchant app.
+
+
+
+
+ +
+
+
googlePayConfig +
Link copied to clipboard
+
+
+
+
var googlePayConfig: GooglePayConfig? = null
Specify the GooglePayConfig object here.
+
+
+
+
+ +
+
+
isTesting +
Link copied to clipboard
+
+
+
+
var isTesting: Boolean = false
Use this setting to switch from production to sandbox.
+
+
+
+
+ +
+
+
samsungPayConfig +
Link copied to clipboard
+
+
+
+
var samsungPayConfig: SamsungPayConfig? = null
Specify the SamsungPayConfig object here.
+
+
+
+
+ +
+
+
suppressTransactionErrorDialog +
Link copied to clipboard
+
+
+
+
var suppressTransactionErrorDialog: Boolean = false
Use this setting to display or hide critical and transaction errors.
+
+
+
+
+ +
+
+
useCertificatePinning +
Link copied to clipboard
+
+
+
+
var useCertificatePinning: Boolean = false
Whether secure connections to Datatrans servers require a certificate chain signed with a specific CA private key.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/is-testing.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/is-testing.html new file mode 100644 index 0000000..c9ada99 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/is-testing.html @@ -0,0 +1,38 @@ + + + + isTesting + + +
+
+ + +
+
+
+
+
+
+ +
+

isTesting

+
+
+ +
+
var isTesting: Boolean = false
+
+

Use this setting to switch from production to sandbox. If not specified, the SDK will call the Datatrans production environment.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/samsung-pay-config.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/samsung-pay-config.html new file mode 100644 index 0000000..499b72d --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/samsung-pay-config.html @@ -0,0 +1,38 @@ + + + + samsungPayConfig + + +
+
+ + +
+
+
+
+
+
+ +
+

samsungPayConfig

+
+
+ +
+
var samsungPayConfig: SamsungPayConfig? = null
+
+

Specify the SamsungPayConfig object here. This is mandatory for Samsung Pay transactions.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/suppress-transaction-error-dialog.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/suppress-transaction-error-dialog.html new file mode 100644 index 0000000..c27361d --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/suppress-transaction-error-dialog.html @@ -0,0 +1,38 @@ + + + + suppressTransactionErrorDialog + + +
+
+ + +
+
+
+
+
+
+ +
+

suppressTransactionErrorDialog

+
+
+ +
+
var suppressTransactionErrorDialog: Boolean = false
+
+

Use this setting to display or hide critical and transaction errors.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/use-certificate-pinning.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/use-certificate-pinning.html new file mode 100644 index 0000000..0eb0cd8 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/use-certificate-pinning.html @@ -0,0 +1,38 @@ + + + + useCertificatePinning + + +
+
+ + +
+
+
+
+
+
+ +
+

useCertificatePinning

+
+
+ +
+
var useCertificatePinning: Boolean = false
+
+

Whether secure connections to Datatrans servers require a certificate chain signed with a specific CA private key. The device's trust settings are explicitly ignored, i.e. custom installed/white-listed certificates and/or CAs will not work.

Implementation uses SecureRandom, make sure to patch your app if you intend to use this feature on older devices. (See here for more information.)

Please be advised that enabling this option will break your app in many corporate networks with anti-malware/-theft/-espionage SSL proxying.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/index.html new file mode 100644 index 0000000..69d24d5 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/index.html @@ -0,0 +1,72 @@ + + + + TransactionRegistry + + +
+
+ + +
+
+
+
+
+
+ +
+

TransactionRegistry

+
object TransactionRegistry

This object is the main class to start any operation with the SDK.

+
+
+
+
+

Functions

+
+
+
+
startTransaction +
Link copied to clipboard
+
+
+
+ +
+
fun startTransaction(activity: Activity, transaction: Transaction)
+
+
Starts the SDK and displays any needed user interface using the provided activity.
+
+
+
+
+
+

Properties

+
+
+
+
transaction +
Link copied to clipboard
+
+
+
+
var transaction: Transaction? = null
The currently active transaction.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/start-transaction.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/start-transaction.html new file mode 100644 index 0000000..3b2b39f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/start-transaction.html @@ -0,0 +1,38 @@ + + + + startTransaction + + +
+
+ + +
+
+
+
+
+
+ +
+

startTransaction

+
+
+ +
+
fun startTransaction(activity: Activity, transaction: Transaction)
+
+

Starts the SDK and displays any needed user interface using the provided activity. Note that a transaction can only be started once.

Parameters

activity

Activity used to present the user interface during an on-going transaction

transaction

Transaction that gets started

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/transaction.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/transaction.html new file mode 100644 index 0000000..ab12257 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/transaction.html @@ -0,0 +1,38 @@ + + + + transaction + + +
+
+ + +
+
+
+
+
+
+ +
+

transaction

+
+
+ +
+
var transaction: Transaction? = null
+
+

The currently active transaction. Use this if the starting activity has been destroyed and you have to reset the TransactionListener.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/index.html new file mode 100644 index 0000000..785dc98 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/index.html @@ -0,0 +1,79 @@ + + + + TransactionSuccess + + +
+
+ + +
+
+
+
+
+
+ +
+

TransactionSuccess

+
class TransactionSuccess

This class includes the success message and other details of a transaction. You will also obtain a transactionId that you can use for operations after the transaction (for example settlement, cancel or refund requests).

+
+
+
+
+

Properties

+
+
+
+
paymentMethodToken +
Link copied to clipboard
+
+
+
+
val paymentMethodToken: PaymentMethodToken? = null
Object containing the token details of the payment method.
+
+
+
+
+ +
+
+
paymentMethodType +
Link copied to clipboard
+
+
+
+
val paymentMethodType: PaymentMethodType
The payment method used during the transaction.
+
+
+
+
+ +
+
+
transactionId +
Link copied to clipboard
+
+
+
+
val transactionId: String
The transactionId that you can use for operations after the transaction (for example settlement, cancel or refund requests).
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/payment-method-token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/payment-method-token.html new file mode 100644 index 0000000..aee3949 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/payment-method-token.html @@ -0,0 +1,38 @@ + + + + paymentMethodToken + + +
+
+ + +
+
+
+
+
+
+ +
+

paymentMethodToken

+
+
+ +
+
val paymentMethodToken: PaymentMethodToken? = null
+
+

Object containing the token details of the payment method. The token details are also returned to your webhook and can be accessed with a status server-to-server request.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/payment-method-type.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/payment-method-type.html new file mode 100644 index 0000000..e632550 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/payment-method-type.html @@ -0,0 +1,38 @@ + + + + paymentMethodType + + +
+
+ + +
+
+
+
+
+
+ +
+

paymentMethodType

+
+
+ +
+
val paymentMethodType: PaymentMethodType
+
+

The payment method used during the transaction.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/transaction-id.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/transaction-id.html new file mode 100644 index 0000000..6857c89 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/transaction-id.html @@ -0,0 +1,38 @@ + + + + transactionId + + +
+
+ + +
+
+
+
+
+
+ +
+

transactionId

+
+
+ +
+
val transactionId: String
+
+

The transactionId that you can use for operations after the transaction (for example settlement, cancel or refund requests).

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/-transaction.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/-transaction.html new file mode 100644 index 0000000..e4af98b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/-transaction.html @@ -0,0 +1,50 @@ + + + + Transaction + + +
+
+ + +
+
+
+
+
+
+ +
+

Transaction

+
+
+ +
+
fun Transaction(mobileToken: String, card: Card)
+
+

Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call together with the card information. Please note that this will only be used if you have direct access to the card information of your customers. For this to work, you can only send one payment method in your server-to-server init call. Use this constructor if you use your own UI fields for the card information.

Parameters

mobileToken

The mobileToken that has previously been initialized with a server-to-server init call.

card

Card object used for the transaction.

+
+ +
+
fun Transaction(mobileToken: String, paymentMethodTokens: List<PaymentMethodToken>)
+
+

Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call and display a selection of one or more saved tokens. The user will then be able to click on their desired saved token to finalize the payment.

Parameters

mobileToken

The mobileToken that has previously been initialized with a server-to-server init call.

paymentMethodTokens

Specify here the tokens that are available for selection to the user.

+
+ +
+
fun Transaction(mobileToken: String)
+
+

Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call. After this class is initialized, you should define its listener and the options properties.

Parameters

mobileToken

The mobileToken that has previously been initialized with a server-to-server init call.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/index.html new file mode 100644 index 0000000..c6f7b85 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/index.html @@ -0,0 +1,111 @@ + + + + Transaction + + +
+
+ + +
+
+
+
+
+
+ +
+

Transaction

+
class Transaction(mobileToken: String)

Use this class to start a transaction with a mobileToken that has previously been initialized with a server-to-server init call. After the transaction has been completed - regardless if successful or not - the listener will be called with some basic information about the success or failure.

+
+
+
+
+

Parameters

+
+
mobileToken

The mobileToken that has previously been initialized with a server-to-server init call.

+
+

Constructors

+
+
+
+
Transaction +
Link copied to clipboard
+
+
+
+
fun Transaction(mobileToken: String, card: Card)
Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call together with the card information.
+
+
+
+
+ +
+
+
Transaction +
Link copied to clipboard
+
+
+
+
fun Transaction(mobileToken: String, paymentMethodTokens: List<PaymentMethodToken>)
Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call and display a selection of one or more saved tokens.
+
+
+
+
+ +
+
+
Transaction +
Link copied to clipboard
+
+
+
+
fun Transaction(mobileToken: String)
Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call.
+
+
+
+
+
+

Properties

+
+
+
+
listener +
Link copied to clipboard
+
+
+
+
var listener: TransactionListener? = null
This listener will be notified after a transaction has been completed, regardless if successful or not.
+
+
+
+
+ +
+
+
options +
Link copied to clipboard
+
+
+
+
var options: TransactionOptions
The available options for how a transaction is handled by the mobile SDK.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/listener.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/listener.html new file mode 100644 index 0000000..3d8e1f5 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/listener.html @@ -0,0 +1,38 @@ + + + + listener + + +
+
+ + +
+
+
+
+
+
+ +
+

listener

+
+
+ +
+
var listener: TransactionListener? = null
+
+

This listener will be notified after a transaction has been completed, regardless if successful or not.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/options.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/options.html new file mode 100644 index 0000000..c2a9e78 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/options.html @@ -0,0 +1,38 @@ + + + + options + + +
+
+ + +
+
+
+
+
+
+ +
+

options

+
+
+ +
+
var options: TransactionOptions
+
+

The available options for how a transaction is handled by the mobile SDK.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/index.html new file mode 100644 index 0000000..828fe3b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.api/index.html @@ -0,0 +1,124 @@ + + + + ch.datatrans.payment.api + + +
+
+ + +
+
+
+
+
+
+ +
+

Package ch.datatrans.payment.api

+
+
+
+
+

Types

+
+
+
+
Transaction +
Link copied to clipboard
+
+
+
+ +
+
class Transaction(mobileToken: String)
+
+
Use this class to start a transaction with a mobileToken that has previously been initialized with a server-to-server init call.
+
+
+
+
+ +
+
+
TransactionListener +
Link copied to clipboard
+
+
+
+ +
+
interface TransactionListener
+
+
Implement TransactionListener to be notified when a transaction ends.
+
+
+
+
+ +
+
+
TransactionOptions +
Link copied to clipboard
+
+
+
+ +
+
class TransactionOptions
+
+
This class can be used to specify miscellaneous options related to the transaction.
+
+
+
+
+ +
+
+
TransactionRegistry +
Link copied to clipboard
+
+
+
+ +
+
object TransactionRegistry
+
+
This object is the main class to start any operation with the SDK.
+
+
+
+
+ +
+
+
TransactionSuccess +
Link copied to clipboard
+
+
+
+ +
+
class TransactionSuccess
+
+
This class includes the success message and other details of a transaction.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-authentication-exception/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-authentication-exception/index.html new file mode 100644 index 0000000..bd7e7dc --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-authentication-exception/index.html @@ -0,0 +1,230 @@ + + + + AuthenticationException + + +
+
+ + +
+
+
+
+
+
+ +
+

AuthenticationException

+
class AuthenticationException : TransactionException

This class contains information which is available when authentication fails.

+
+
+
+
+

Functions

+
+
+
+
addSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun addSuppressed(p0: Throwable)
+
+
+
+
+
+
+ +
+
+
fillInStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun fillInStackTrace(): Throwable
+
+
+
+
+
+
+ +
+
+
getLocalizedMessage +
Link copied to clipboard
+
+
+
+ +
+
open fun getLocalizedMessage(): String
+
+
+
+
+
+
+ +
+
+
getStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun getStackTrace(): Array<StackTraceElement>
+
+
+
+
+
+
+ +
+
+
getSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun getSuppressed(): Array<Throwable>
+
+
+
+
+
+
+ +
+
+
initCause +
Link copied to clipboard
+
+
+
+ +
+
open fun initCause(p0: Throwable): Throwable
+
+
+
+
+
+
+ +
+
+
printStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
+
+
+
+
+
+
+ +
+
+
setStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun setStackTrace(p0: Array<StackTraceElement>)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cause +
Link copied to clipboard
+
+
+
+
open val cause: Throwable?
+
+
+
+
+ +
+
+
message +
Link copied to clipboard
+
+
+
+
open val message: String?
+
+
+
+
+ +
+
+
paymentMethodType +
Link copied to clipboard
+
+
+
+
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
+
+
+
+
+ +
+
+
transactionId +
Link copied to clipboard
+
+
+
+
val transactionId: String?
The identifier of the failed transaction.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-authorization-exception/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-authorization-exception/index.html new file mode 100644 index 0000000..4cc9ea2 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-authorization-exception/index.html @@ -0,0 +1,230 @@ + + + + AuthorizationException + + +
+
+ + +
+
+
+
+
+
+ +
+

AuthorizationException

+
class AuthorizationException : TransactionException

This class contains information which is available when authorization fails.

+
+
+
+
+

Functions

+
+
+
+
addSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun addSuppressed(p0: Throwable)
+
+
+
+
+
+
+ +
+
+
fillInStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun fillInStackTrace(): Throwable
+
+
+
+
+
+
+ +
+
+
getLocalizedMessage +
Link copied to clipboard
+
+
+
+ +
+
open fun getLocalizedMessage(): String
+
+
+
+
+
+
+ +
+
+
getStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun getStackTrace(): Array<StackTraceElement>
+
+
+
+
+
+
+ +
+
+
getSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun getSuppressed(): Array<Throwable>
+
+
+
+
+
+
+ +
+
+
initCause +
Link copied to clipboard
+
+
+
+ +
+
open fun initCause(p0: Throwable): Throwable
+
+
+
+
+
+
+ +
+
+
printStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
+
+
+
+
+
+
+ +
+
+
setStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun setStackTrace(p0: Array<StackTraceElement>)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cause +
Link copied to clipboard
+
+
+
+
open val cause: Throwable?
+
+
+
+
+ +
+
+
message +
Link copied to clipboard
+
+
+
+
open val message: String?
+
+
+
+
+ +
+
+
paymentMethodType +
Link copied to clipboard
+
+
+
+
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
+
+
+
+
+ +
+
+
transactionId +
Link copied to clipboard
+
+
+
+
val transactionId: String?
The identifier of the failed transaction.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-backend-exception/error-code.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-backend-exception/error-code.html new file mode 100644 index 0000000..50c98a6 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-backend-exception/error-code.html @@ -0,0 +1,38 @@ + + + + errorCode + + +
+
+ + +
+
+
+
+
+
+ +
+

errorCode

+
+
+ +
+
val errorCode: Int
+
+

Returns the underlying datatrans backend error code.

Return

The datatrans backend error code

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-backend-exception/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-backend-exception/index.html new file mode 100644 index 0000000..a497b72 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-backend-exception/index.html @@ -0,0 +1,217 @@ + + + + BackendException + + +
+
+ + +
+
+
+
+
+
+ +
+

BackendException

+
class BackendException : Exception

This class contains information which is available when the datatrans backend returns an error.

+
+
+
+
+

Functions

+
+
+
+
addSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun addSuppressed(p0: Throwable)
+
+
+
+
+
+
+ +
+
+
fillInStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun fillInStackTrace(): Throwable
+
+
+
+
+
+
+ +
+
+
getLocalizedMessage +
Link copied to clipboard
+
+
+
+ +
+
open fun getLocalizedMessage(): String
+
+
+
+
+
+
+ +
+
+
getStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun getStackTrace(): Array<StackTraceElement>
+
+
+
+
+
+
+ +
+
+
getSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun getSuppressed(): Array<Throwable>
+
+
+
+
+
+
+ +
+
+
initCause +
Link copied to clipboard
+
+
+
+ +
+
open fun initCause(p0: Throwable): Throwable
+
+
+
+
+
+
+ +
+
+
printStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
+
+
+
+
+
+
+ +
+
+
setStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun setStackTrace(p0: Array<StackTraceElement>)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cause +
Link copied to clipboard
+
+
+
+
open val cause: Throwable?
+
+
+
+
+ +
+
+
errorCode +
Link copied to clipboard
+
+
+
+
val errorCode: Int
Returns the underlying datatrans backend error code.
+
+
+
+
+ +
+
+
message +
Link copied to clipboard
+
+
+
+
open val message: String?
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/-t-w-i-n-t-not-installed-exception.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/-t-w-i-n-t-not-installed-exception.html new file mode 100644 index 0000000..73f7f90 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/-t-w-i-n-t-not-installed-exception.html @@ -0,0 +1,38 @@ + + + + TWINTNotInstalledException + + +
+
+ + +
+
+
+
+
+
+ +
+

TWINTNotInstalledException

+
+
+ +
+
fun TWINTNotInstalledException()
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/index.html new file mode 100644 index 0000000..116e77d --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/index.html @@ -0,0 +1,245 @@ + + + + TWINTNotInstalledException + + +
+
+ + +
+
+
+
+
+
+ +
+

TWINTNotInstalledException

+
class TWINTNotInstalledException : TechnicalException

This class contains information which is available if a user selects the TWINT payment method without having the app installed.

+
+
+
+
+

Constructors

+
+
+
+
TWINTNotInstalledException +
Link copied to clipboard
+
+
+
+
fun TWINTNotInstalledException()
+
+
+
+
+
+

Functions

+
+
+
+
addSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun addSuppressed(p0: Throwable)
+
+
+
+
+
+
+ +
+
+
fillInStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun fillInStackTrace(): Throwable
+
+
+
+
+
+
+ +
+
+
getLocalizedMessage +
Link copied to clipboard
+
+
+
+ +
+
open fun getLocalizedMessage(): String
+
+
+
+
+
+
+ +
+
+
getStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun getStackTrace(): Array<StackTraceElement>
+
+
+
+
+
+
+ +
+
+
getSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun getSuppressed(): Array<Throwable>
+
+
+
+
+
+
+ +
+
+
initCause +
Link copied to clipboard
+
+
+
+ +
+
open fun initCause(p0: Throwable): Throwable
+
+
+
+
+
+
+ +
+
+
printStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
+
+
+
+
+
+
+ +
+
+
setStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun setStackTrace(p0: Array<StackTraceElement>)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cause +
Link copied to clipboard
+
+
+
+
open val cause: Throwable?
+
+
+
+
+ +
+
+
message +
Link copied to clipboard
+
+
+
+
open val message: String?
+
+
+
+
+ +
+
+
paymentMethodType +
Link copied to clipboard
+
+
+
+
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
+
+
+
+
+ +
+
+
transactionId +
Link copied to clipboard
+
+
+
+
val transactionId: String?
The identifier of the failed transaction.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-technical-exception/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-technical-exception/index.html new file mode 100644 index 0000000..1f6e7e6 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-technical-exception/index.html @@ -0,0 +1,241 @@ + + + + TechnicalException + + +
+
+ + +
+
+
+
+
+
+ +
+

TechnicalException

+
open class TechnicalException : TransactionException

This class contains information which is available when there is a technical problem for example when Google Pay fails for an unknown reason.

+
+
+
+
+

Functions

+
+
+
+
addSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun addSuppressed(p0: Throwable)
+
+
+
+
+
+
+ +
+
+
fillInStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun fillInStackTrace(): Throwable
+
+
+
+
+
+
+ +
+
+
getLocalizedMessage +
Link copied to clipboard
+
+
+
+ +
+
open fun getLocalizedMessage(): String
+
+
+
+
+
+
+ +
+
+
getStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun getStackTrace(): Array<StackTraceElement>
+
+
+
+
+
+
+ +
+
+
getSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun getSuppressed(): Array<Throwable>
+
+
+
+
+
+
+ +
+
+
initCause +
Link copied to clipboard
+
+
+
+ +
+
open fun initCause(p0: Throwable): Throwable
+
+
+
+
+
+
+ +
+
+
printStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
+
+
+
+
+
+
+ +
+
+
setStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun setStackTrace(p0: Array<StackTraceElement>)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cause +
Link copied to clipboard
+
+
+
+
open val cause: Throwable?
+
+
+
+
+ +
+
+
message +
Link copied to clipboard
+
+
+
+
open val message: String?
+
+
+
+
+ +
+
+
paymentMethodType +
Link copied to clipboard
+
+
+
+
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
+
+
+
+
+ +
+
+
transactionId +
Link copied to clipboard
+
+
+
+
val transactionId: String?
The identifier of the failed transaction.
+
+
+
+
+
+

Inheritors

+
+
+
+
TWINTNotInstalledException +
Link copied to clipboard
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/index.html new file mode 100644 index 0000000..425d0d3 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/index.html @@ -0,0 +1,259 @@ + + + + TransactionException + + +
+
+ + +
+
+
+
+
+
+ +
+

TransactionException

+
open class TransactionException : Exception

This class includes the error message and other details of a transaction.

+
+
+
+
+

Functions

+
+
+
+
addSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun addSuppressed(p0: Throwable)
+
+
+
+
+
+
+ +
+
+
fillInStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun fillInStackTrace(): Throwable
+
+
+
+
+
+
+ +
+
+
getLocalizedMessage +
Link copied to clipboard
+
+
+
+ +
+
open fun getLocalizedMessage(): String
+
+
+
+
+
+
+ +
+
+
getStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun getStackTrace(): Array<StackTraceElement>
+
+
+
+
+
+
+ +
+
+
getSuppressed +
Link copied to clipboard
+
+
+
+ +
+
fun getSuppressed(): Array<Throwable>
+
+
+
+
+
+
+ +
+
+
initCause +
Link copied to clipboard
+
+
+
+ +
+
open fun initCause(p0: Throwable): Throwable
+
+
+
+
+
+
+ +
+
+
printStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
+
+
+
+
+
+
+ +
+
+
setStackTrace +
Link copied to clipboard
+
+
+
+ +
+
open fun setStackTrace(p0: Array<StackTraceElement>)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cause +
Link copied to clipboard
+
+
+
+
open val cause: Throwable?
+
+
+
+
+ +
+
+
message +
Link copied to clipboard
+
+
+
+
open val message: String?
+
+
+
+
+ +
+
+
paymentMethodType +
Link copied to clipboard
+
+
+
+
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
+
+
+
+
+ +
+
+
transactionId +
Link copied to clipboard
+
+
+
+
val transactionId: String?
The identifier of the failed transaction.
+
+
+
+
+
+

Inheritors

+
+
+
+
AuthenticationException +
Link copied to clipboard
+
+
+
+
+ +
+
+
AuthorizationException +
Link copied to clipboard
+
+
+
+
+ +
+
+
TechnicalException +
Link copied to clipboard
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/payment-method-type.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/payment-method-type.html new file mode 100644 index 0000000..ec6f61c --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/payment-method-type.html @@ -0,0 +1,38 @@ + + + + paymentMethodType + + +
+
+ + +
+
+
+
+
+
+ +
+

paymentMethodType

+
+
+ +
+
val paymentMethodType: PaymentMethodType?
+
+

The payment method used during the transaction.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/transaction-id.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/transaction-id.html new file mode 100644 index 0000000..1fd5f5e --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/transaction-id.html @@ -0,0 +1,38 @@ + + + + transactionId + + +
+
+ + +
+
+
+
+
+
+ +
+

transactionId

+
+
+ +
+
val transactionId: String?
+
+

The identifier of the failed transaction.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/index.html new file mode 100644 index 0000000..f6009e7 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.exception/index.html @@ -0,0 +1,141 @@ + + + + ch.datatrans.payment.exception + + +
+
+ + +
+
+
+
+
+
+ +
+

Package ch.datatrans.payment.exception

+
+
+
+
+

Types

+
+
+
+
AuthenticationException +
Link copied to clipboard
+
+
+
+ +
+
class AuthenticationException : TransactionException
+
+
This class contains information which is available when authentication fails.
+
+
+
+
+ +
+
+
AuthorizationException +
Link copied to clipboard
+
+
+
+ +
+
class AuthorizationException : TransactionException
+
+
This class contains information which is available when authorization fails.
+
+
+
+
+ +
+
+
BackendException +
Link copied to clipboard
+
+
+
+ +
+
class BackendException : Exception
+
+
This class contains information which is available when the datatrans backend returns an error.
+
+
+
+
+ +
+
+
TechnicalException +
Link copied to clipboard
+
+
+
+ +
+
open class TechnicalException : TransactionException
+
+
This class contains information which is available when there is a technical problem for example when Google Pay fails for an unknown reason.
+
+
+
+
+ +
+
+
TransactionException +
Link copied to clipboard
+
+
+
+ +
+
open class TransactionException : Exception
+
+
This class includes the error message and other details of a transaction.
+
+
+
+
+ +
+
+
TWINTNotInstalledException +
Link copied to clipboard
+
+
+
+ +
+
class TWINTNotInstalledException : TechnicalException
+
+
This class contains information which is available if a user selects the TWINT payment method without having the app installed.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/-card-expiry-date.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/-card-expiry-date.html new file mode 100644 index 0000000..81b0e98 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/-card-expiry-date.html @@ -0,0 +1,38 @@ + + + + CardExpiryDate + + +
+
+ + +
+
+
+
+
+
+ +
+

CardExpiryDate

+
+
+ +
+
fun CardExpiryDate(month: Int, year: Int)
+
+

Initializes the card expiry date with the given month and year.

Parameters

month

Card expiry month, 1, 12, e.g. 1 for January or 12 for December

year

Card expiry year, 2 or 4 digits, e.g. 30 or 2030

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/equals.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/equals.html new file mode 100644 index 0000000..34f9f19 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/equals.html @@ -0,0 +1,38 @@ + + + + equals + + +
+
+ + +
+
+
+
+
+
+ +
+

equals

+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-month.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-month.html new file mode 100644 index 0000000..fd68f2a --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-month.html @@ -0,0 +1,38 @@ + + + + formattedMonth + + +
+
+ + +
+
+
+
+
+
+ +
+

formattedMonth

+
+
+ +
+
val formattedMonth: String
+
+

Formats the month to a two digit string.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-year.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-year.html new file mode 100644 index 0000000..20fbbe0 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-year.html @@ -0,0 +1,38 @@ + + + + formattedYear + + +
+
+ + +
+
+
+
+
+
+ +
+

formattedYear

+
+
+ +
+
val formattedYear: String
+
+

Formats the year to a two digit string.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/hash-code.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/hash-code.html new file mode 100644 index 0000000..3aec2bc --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/hash-code.html @@ -0,0 +1,38 @@ + + + + hashCode + + +
+
+ + +
+
+
+
+
+
+ +
+

hashCode

+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/index.html new file mode 100644 index 0000000..c525b13 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/index.html @@ -0,0 +1,164 @@ + + + + CardExpiryDate + + +
+
+ + +
+
+
+
+
+
+ +
+

CardExpiryDate

+
class CardExpiryDate(month: Int, year: Int) : Serializable

Class to be used to represent the card expiry date (month and year).

+
+
+
+
+

Parameters

+
+
month

Card expiry month, 1, 12, e.g. 1 for January or 12 for December

year

Card expiry year, 2 or 4 digits, e.g. 30 or 2030

+
+

Constructors

+
+
+
+
CardExpiryDate +
Link copied to clipboard
+
+
+
+
fun CardExpiryDate(month: Int, year: Int)
Initializes the card expiry date with the given month and year.
+
+
+
+
+
+

Functions

+
+
+
+
equals +
Link copied to clipboard
+
+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+
+
+ +
+
+
hashCode +
Link copied to clipboard
+
+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+
+
+
+ +
+
+
toString +
Link copied to clipboard
+
+
+
+ +
+
open override fun toString(): String
+
+
+
+
+
+
+
+

Properties

+
+
+
+
formattedMonth +
Link copied to clipboard
+
+
+
+
val formattedMonth: String
Formats the month to a two digit string.
+
+
+
+
+ +
+
+
formattedYear +
Link copied to clipboard
+
+
+
+
val formattedYear: String
Formats the year to a two digit string.
+
+
+
+
+ +
+
+
month +
Link copied to clipboard
+
+
+
+
var month: Int
Card expiry month, 1, 12, e.g.
+
+
+
+
+ +
+
+
year +
Link copied to clipboard
+
+
+
+
var year: Int
Card expiry year, 2 or 4 digits, e.g.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/month.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/month.html new file mode 100644 index 0000000..54b9821 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/month.html @@ -0,0 +1,38 @@ + + + + month + + +
+
+ + +
+
+
+
+
+
+ +
+

month

+
+
+ +
+
var month: Int
+
+

Card expiry month, 1, 12, e.g. 1 for January or 12 for December

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/to-string.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/to-string.html new file mode 100644 index 0000000..814ba7b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/to-string.html @@ -0,0 +1,38 @@ + + + + toString + + +
+
+ + +
+
+
+
+
+
+ +
+

toString

+
+
+ +
+
open override fun toString(): String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/year.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/year.html new file mode 100644 index 0000000..976e658 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/year.html @@ -0,0 +1,38 @@ + + + + year + + +
+
+ + +
+
+
+
+
+
+ +
+

year

+
+
+ +
+
var year: Int
+
+

Card expiry year, 2 or 4 digits, e.g. 30 or 2030

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/-card-token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/-card-token.html new file mode 100644 index 0000000..8d3a087 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/-card-token.html @@ -0,0 +1,38 @@ + + + + CardToken + + +
+
+ + +
+
+
+
+
+
+ +
+

CardToken

+
+
+ +
+
fun CardToken(type: PaymentMethodType, token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?, cardholder: String?)
+
+

Initializes a card token object with the given card data.

Parameters

type

Payment method type, e.g. Visa

token

This is the token for the card, also known as alias. This can be used to debit the card without further customer interaction.

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the first 6 digits and the last 4 digits of the card, e.g. 432930xxxxxx6095.

cardholder

Cardholder's name

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/card-expiry-date.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/card-expiry-date.html new file mode 100644 index 0000000..4c80298 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/card-expiry-date.html @@ -0,0 +1,38 @@ + + + + cardExpiryDate + + +
+
+ + +
+
+
+
+
+
+ +
+

cardExpiryDate

+
+
+ +
+
var cardExpiryDate: CardExpiryDate? = null
+
+

Expiry date

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/cardholder.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/cardholder.html new file mode 100644 index 0000000..71b1767 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/cardholder.html @@ -0,0 +1,38 @@ + + + + cardholder + + +
+
+ + +
+
+
+
+
+
+ +
+

cardholder

+
+
+ +
+
var cardholder: String? = null
+
+

Cardholder's name

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/clone.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/clone.html new file mode 100644 index 0000000..65d25d9 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/clone.html @@ -0,0 +1,38 @@ + + + + clone + + +
+
+ + +
+
+
+
+
+
+ +
+

clone

+
+
+ +
+
open override fun clone(): CardToken
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/equals.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/equals.html new file mode 100644 index 0000000..d52468f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/equals.html @@ -0,0 +1,38 @@ + + + + equals + + +
+
+ + +
+
+
+
+
+
+ +
+

equals

+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/get-accessibility-title.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/get-accessibility-title.html new file mode 100644 index 0000000..703ca2c --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/get-accessibility-title.html @@ -0,0 +1,38 @@ + + + + getAccessibilityTitle + + +
+
+ + +
+
+
+
+
+
+ +
+

getAccessibilityTitle

+
+
+ +
+
open override fun getAccessibilityTitle(context: Context): String
+
+

For TalkBack this title is used instead of displayTitle.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/get-display-title.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/get-display-title.html new file mode 100644 index 0000000..d3fd8b8 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/get-display-title.html @@ -0,0 +1,38 @@ + + + + getDisplayTitle + + +
+
+ + +
+
+
+
+
+
+ +
+

getDisplayTitle

+
+
+ +
+
open override fun getDisplayTitle(context: Context): String
+
+

A human readable title e.g. '•••• 6095'

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/hash-code.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/hash-code.html new file mode 100644 index 0000000..aebc82a --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/hash-code.html @@ -0,0 +1,38 @@ + + + + hashCode + + +
+
+ + +
+
+
+
+
+
+ +
+

hashCode

+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/index.html new file mode 100644 index 0000000..5d031df --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/index.html @@ -0,0 +1,274 @@ + + + + CardToken + + +
+
+ + +
+
+
+
+
+
+ +
+

CardToken

+
open class CardToken : PaymentMethodToken

This class contains the token information about a credit or debit card registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to display a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful card payment or with a dedicated registration.

+
+
+
+
+

Constructors

+
+
+
+
CardToken +
Link copied to clipboard
+
+
+
+
fun CardToken(type: PaymentMethodType, token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?, cardholder: String?)
Initializes a card token object with the given card data.
+
+
+
+
+
+

Functions

+
+
+
+
clone +
Link copied to clipboard
+
+
+
+ +
+
open override fun clone(): CardToken
+
+
+
+
+
+
+ +
+
+
equals +
Link copied to clipboard
+
+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+
+
+ +
+
+
getAccessibilityTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getAccessibilityTitle(context: Context): String
+
+
For TalkBack this title is used instead of displayTitle.
+
+
+
+
+ +
+
+
getDisplayTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDisplayTitle(context: Context): String
+
+
A human readable title e.g.
+
+
+
+
+ +
+
+
hashCode +
Link copied to clipboard
+
+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+
+
+
+ +
+
+
toJson +
Link copied to clipboard
+
+
+
+ +
+
fun toJson(): String
+
+
Returns a JSON string representation of this token payment object.
+
+
+
+
+ +
+
+
toString +
Link copied to clipboard
+
+
+
+ +
+
open override fun toString(): String
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cardExpiryDate +
Link copied to clipboard
+
+
+
+
var cardExpiryDate: CardExpiryDate? = null
Expiry date
+
+
+
+
+ +
+
+
cardholder +
Link copied to clipboard
+
+
+
+
var cardholder: String? = null
Cardholder's name
+
+
+
+
+ +
+
+
isValid +
Link copied to clipboard
+
+
+
+
open override val isValid: Boolean
Checks if the expiration date is in the future or not.
+
+
+
+
+ +
+
+
maskedCardNumber +
Link copied to clipboard
+
+
+
+
var maskedCardNumber: String? = null
The masked card number you can use to display that specific card in your app.
+
+
+
+
+ +
+
+
token +
Link copied to clipboard
+
+
+
+
open var token: String
The token that can be used to process recurring payments or fast checkouts.
+
+
+
+
+ +
+
+
type +
Link copied to clipboard
+
+
+
+
val type: PaymentMethodType
Payment method type, e.g.
+
+
+
+
+
+

Inheritors

+
+
+
+
PostFinanceCardToken +
Link copied to clipboard
+
+
+
+
+ +
+
+
RekaToken +
Link copied to clipboard
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/is-valid.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/is-valid.html new file mode 100644 index 0000000..ee44ab3 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/is-valid.html @@ -0,0 +1,38 @@ + + + + isValid + + +
+
+ + +
+
+
+
+
+
+ +
+

isValid

+
+
+ +
+
open override val isValid: Boolean
+
+

Checks if the expiration date is in the future or not.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/masked-card-number.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/masked-card-number.html new file mode 100644 index 0000000..09c8fab --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/masked-card-number.html @@ -0,0 +1,38 @@ + + + + maskedCardNumber + + +
+
+ + +
+
+
+
+
+
+ +
+

maskedCardNumber

+
+
+ +
+
var maskedCardNumber: String? = null
+
+

The masked card number you can use to display that specific card in your app. The masked card number shows the first 6 digits and the last 4 digits of the card, e.g. 432930xxxxxx6095.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/to-string.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/to-string.html new file mode 100644 index 0000000..f002b26 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/to-string.html @@ -0,0 +1,38 @@ + + + + toString + + +
+
+ + +
+
+
+
+
+
+ +
+

toString

+
+
+ +
+
open override fun toString(): String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/-card.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/-card.html new file mode 100644 index 0000000..1576620 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/-card.html @@ -0,0 +1,38 @@ + + + + Card + + +
+
+ + +
+
+
+
+
+
+ +
+

Card

+
+
+ +
+
fun Card(type: PaymentMethodType, number: String, expiryDate: CardExpiryDate, cvv: String? = null, cardholder: String? = null)
+
+

Use this to initialize a card object with the card data.

Parameters

type

Card type, e.g. Visa or Mastercard

number

Card number

expiryDate

Expiry date

cvv

Card security code - null if the card does not have a card security code

cardholder

Cardholder's name

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/cardholder.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/cardholder.html new file mode 100644 index 0000000..e448ce7 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/cardholder.html @@ -0,0 +1,38 @@ + + + + cardholder + + +
+
+ + +
+
+
+
+
+
+ +
+

cardholder

+
+
+ +
+
val cardholder: String? = null
+
+

Cardholder's name

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/cvv.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/cvv.html new file mode 100644 index 0000000..5d20d48 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/cvv.html @@ -0,0 +1,38 @@ + + + + cvv + + +
+
+ + +
+
+
+
+
+
+ +
+

cvv

+
+
+ +
+
val cvv: String? = null
+
+

Card security code - null if the card does not have a card security code

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/expiry-date.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/expiry-date.html new file mode 100644 index 0000000..cb0fe35 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/expiry-date.html @@ -0,0 +1,38 @@ + + + + expiryDate + + +
+
+ + +
+
+
+
+
+
+ +
+

expiryDate

+
+
+ +
+
val expiryDate: CardExpiryDate
+
+

Expiry date

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/index.html new file mode 100644 index 0000000..3574a70 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/index.html @@ -0,0 +1,124 @@ + + + + Card + + +
+
+ + +
+
+
+
+
+
+ +
+

Card

+
class Card(type: PaymentMethodType, number: String, expiryDate: CardExpiryDate, cvv: String?, cardholder: String?)

Use this class to process raw card data for payments. You should use this class if your app takes over the user interface for the card input fields.

+
+
+
+
+

Parameters

+
+
type

Card type, e.g. Visa or Mastercard

number

Card number

expiryDate

Expiry date

cvv

Card security code - null if the card does not have a card security code

cardholder

Cardholder's name

+
+

Constructors

+
+
+
+
Card +
Link copied to clipboard
+
+
+
+
fun Card(type: PaymentMethodType, number: String, expiryDate: CardExpiryDate, cvv: String? = null, cardholder: String? = null)
Use this to initialize a card object with the card data.
+
+
+
+
+
+

Properties

+
+
+
+
cardholder +
Link copied to clipboard
+
+
+
+
val cardholder: String? = null
Cardholder's name
+
+
+
+
+ +
+
+
cvv +
Link copied to clipboard
+
+
+
+
val cvv: String? = null
Card security code - null if the card does not have a card security code
+
+
+
+
+ +
+
+
expiryDate +
Link copied to clipboard
+
+
+
+
val expiryDate: CardExpiryDate
Expiry date
+
+
+
+
+ +
+
+
number +
Link copied to clipboard
+
+
+
+
val number: String
Card number
+
+
+
+
+ +
+
+
type +
Link copied to clipboard
+
+
+
+
val type: PaymentMethodType
Card type, e.g.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/number.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/number.html new file mode 100644 index 0000000..2e89d1e --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/number.html @@ -0,0 +1,38 @@ + + + + number + + +
+
+ + +
+
+
+
+
+
+ +
+

number

+
+
+ +
+
val number: String
+
+

Card number

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/type.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/type.html new file mode 100644 index 0000000..a5f3bdb --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/type.html @@ -0,0 +1,38 @@ + + + + type + + +
+
+ + +
+
+
+
+
+
+ +
+

type

+
+
+ +
+
val type: PaymentMethodType
+
+

Card type, e.g. Visa or Mastercard

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/has-google-pay.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/has-google-pay.html new file mode 100644 index 0000000..7cbb9e8 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/has-google-pay.html @@ -0,0 +1,38 @@ + + + + hasGooglePay + + +
+
+ + +
+
+
+
+
+
+ +
+

hasGooglePay

+
+
+ +
+
suspend fun hasGooglePay(context: Context, supportedNetworks: List<PaymentMethodType>, isTesting: Boolean = false): Boolean
+
+

Although the library automatically hides Google Pay if no cards are supported, this shows if Google Pay is available for the specified card acquirers.

Return

True if Google Pay is available on the device, false if it is unavailable.

Parameters

context

Android context

supportedNetworks

Supported card acquirers

isTesting

True if running on sandbox, false otherwise. Default is false.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/index.html new file mode 100644 index 0000000..9bd30e2 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/index.html @@ -0,0 +1,57 @@ + + + + Companion + + +
+
+ + +
+
+
+
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+

Functions

+
+
+
+
hasGooglePay +
Link copied to clipboard
+
+
+
+ +
+
suspend fun hasGooglePay(context: Context, supportedNetworks: List<PaymentMethodType>, isTesting: Boolean = false): Boolean
+
+
Although the library automatically hides Google Pay if no cards are supported, this shows if Google Pay is available for the specified card acquirers.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-google-pay-config.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-google-pay-config.html new file mode 100644 index 0000000..0e2b182 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-google-pay-config.html @@ -0,0 +1,38 @@ + + + + GooglePayConfig + + +
+
+ + +
+
+
+
+
+
+ +
+

GooglePayConfig

+
+
+ +
+
fun GooglePayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean = false)
+
+

Creates a new GooglePayConfig object.

Parameters

supportedNetworks

Supported card acquirers

merchantName

The displayed merchant name

showLargeButton

Use this option to show Google Pay as a payment button instead of a listed payment method.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/index.html new file mode 100644 index 0000000..83670f9 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/index.html @@ -0,0 +1,76 @@ + + + + GooglePayConfig + + +
+
+ + +
+
+
+
+
+
+ +
+

GooglePayConfig

+
data class GooglePayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean)

Configuration object for Google Pay transactions.

+
+
+
+
+

Parameters

+
+
supportedNetworks

Supported card acquirers

merchantName

The displayed merchant name

showLargeButton

Use this option to show Google Pay as a payment button instead of a listed payment method.

+
+

Constructors

+
+
+
+
GooglePayConfig +
Link copied to clipboard
+
+
+
+
fun GooglePayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean = false)
Creates a new GooglePayConfig object.
+
+
+
+
+
+

Types

+
+
+
+
Companion +
Link copied to clipboard
+
+
+
+ +
+
object Companion
+
+
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/-pay-pal-token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/-pay-pal-token.html new file mode 100644 index 0000000..b436f4b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/-pay-pal-token.html @@ -0,0 +1,38 @@ + + + + PayPalToken + + +
+
+ + +
+
+
+
+
+
+ +
+

PayPalToken

+
+
+ +
+
fun PayPalToken(token: String, payPalEmail: String?)
+
+

This constructor has to be used to initialize a PayPal payment object.

Parameters

token

Token for a PayPal account

payPalEmail

PayPal e-mail address. This will be used for displaying purposes.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/clone.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/clone.html new file mode 100644 index 0000000..d37d00c --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/clone.html @@ -0,0 +1,38 @@ + + + + clone + + +
+
+ + +
+
+
+
+
+
+ +
+

clone

+
+
+ +
+
open override fun clone(): PayPalToken
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/equals.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/equals.html new file mode 100644 index 0000000..ae37f43 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/equals.html @@ -0,0 +1,38 @@ + + + + equals + + +
+
+ + +
+
+
+
+
+
+ +
+

equals

+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-accessibility-title.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-accessibility-title.html new file mode 100644 index 0000000..46d8aa2 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-accessibility-title.html @@ -0,0 +1,38 @@ + + + + getAccessibilityTitle + + +
+
+ + +
+
+
+
+
+
+ +
+

getAccessibilityTitle

+
+
+ +
+
open override fun getAccessibilityTitle(context: Context): String
+
+

For TalkBack this title is used instead of displayTitle.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-display-title.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-display-title.html new file mode 100644 index 0000000..7caec2b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-display-title.html @@ -0,0 +1,38 @@ + + + + getDisplayTitle + + +
+
+ + +
+
+
+
+
+
+ +
+

getDisplayTitle

+
+
+ +
+
open override fun getDisplayTitle(context: Context): String
+
+

A human readable title

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/hash-code.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/hash-code.html new file mode 100644 index 0000000..cb54585 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/hash-code.html @@ -0,0 +1,38 @@ + + + + hashCode + + +
+
+ + +
+
+
+
+
+
+ +
+

hashCode

+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/index.html new file mode 100644 index 0000000..c623927 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/index.html @@ -0,0 +1,232 @@ + + + + PayPalToken + + +
+
+ + +
+
+
+
+
+
+ +
+

PayPalToken

+
class PayPalToken(token: String, payPalEmail: String?) : PaymentMethodToken

This class contains the token information about a PayPal registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to show a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful PayPal payment or with a dedicated registration.

+
+
+
+
+

Parameters

+
+
token

Token for a PayPal account

payPalEmail

PayPal e-mail address. This will be used for displaying purposes.

+
+

Constructors

+
+
+
+
PayPalToken +
Link copied to clipboard
+
+
+
+
fun PayPalToken(token: String, payPalEmail: String?)
This constructor has to be used to initialize a PayPal payment object.
+
+
+
+
+
+

Functions

+
+
+
+
clone +
Link copied to clipboard
+
+
+
+ +
+
open override fun clone(): PayPalToken
+
+
+
+
+
+
+ +
+
+
equals +
Link copied to clipboard
+
+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+
+
+ +
+
+
getAccessibilityTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getAccessibilityTitle(context: Context): String
+
+
For TalkBack this title is used instead of displayTitle.
+
+
+
+
+ +
+
+
getDisplayTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDisplayTitle(context: Context): String
+
+
A human readable title
+
+
+
+
+ +
+
+
hashCode +
Link copied to clipboard
+
+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+
+
+
+ +
+
+
toJson +
Link copied to clipboard
+
+
+
+ +
+
fun toJson(): String
+
+
Returns a JSON string representation of this token payment object.
+
+
+
+
+ +
+
+
toString +
Link copied to clipboard
+
+
+
+ +
+
open override fun toString(): String
+
+
+
+
+
+
+
+

Properties

+
+
+
+
isValid +
Link copied to clipboard
+
+
+
+
open val isValid: Boolean = true
Checks if the payment method token is valid.
+
+
+
+
+ +
+
+
payPalEmail +
Link copied to clipboard
+
+
+
+
val payPalEmail: String?
PayPal e-mail address.
+
+
+
+
+ +
+
+
token +
Link copied to clipboard
+
+
+
+
open var token: String
The token that can be used to process recurring payments or fast checkouts.
+
+
+
+
+ +
+
+
type +
Link copied to clipboard
+
+
+
+
val type: PaymentMethodType
Payment method type, e.g.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/pay-pal-email.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/pay-pal-email.html new file mode 100644 index 0000000..6029f19 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/pay-pal-email.html @@ -0,0 +1,38 @@ + + + + payPalEmail + + +
+
+ + +
+
+
+
+
+
+ +
+

payPalEmail

+
+
+ +
+
val payPalEmail: String?
+
+

PayPal e-mail address. This will be used for displaying purposes.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/to-string.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/to-string.html new file mode 100644 index 0000000..66b4cc5 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/to-string.html @@ -0,0 +1,38 @@ + + + + toString + + +
+
+ + +
+
+
+
+
+
+ +
+

toString

+
+
+ +
+
open override fun toString(): String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/create.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/create.html new file mode 100644 index 0000000..0542adf --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/create.html @@ -0,0 +1,44 @@ + + + + create + + +
+
+ + +
+
+
+
+
+
+ +
+

create

+
+
+ +
+
fun create(jsonString: String): PaymentMethodToken
+
+

Creates a new token payment object from a given JSON string. This is a convenience method for serialization/deserialization.

Return

The deserialized token payment object

Parameters

jsonString

JSON string to be deserialized into a token payment object

+
+ +
+
fun create(legacyTokenData: ByteArray): PaymentMethodToken?
+
+

Creates a new token payment object from data encoded by the old payment library.

Return

The decoded PaymentMethodToken, CardToken, PostFinanceCardToken, RekaToken or PayPalToken, if successful, null if legacyData is invalid.

Parameters

legacyTokenData

Data encoded by the old payment library

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/index.html new file mode 100644 index 0000000..e734657 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/index.html @@ -0,0 +1,63 @@ + + + + Companion + + +
+
+ + +
+
+
+
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+

Functions

+
+
+
+
create +
Link copied to clipboard
+
+
+
+ +
+
fun create(legacyTokenData: ByteArray): PaymentMethodToken?
+
+
Creates a new token payment object from data encoded by the old payment library.
+
+ +
+
fun create(jsonString: String): PaymentMethodToken
+
+
Creates a new token payment object from a given JSON string.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-payment-method-token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-payment-method-token.html new file mode 100644 index 0000000..8d662ba --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-payment-method-token.html @@ -0,0 +1,38 @@ + + + + PaymentMethodToken + + +
+
+ + +
+
+
+
+
+
+ +
+

PaymentMethodToken

+
+
+ +
+
fun PaymentMethodToken(type: PaymentMethodType, token: String)
+
+

This constructor has to be used to initialize a payment object.

Parameters

type

Payment method type, e.g. PayPal or Twint.

token

The token that can be used to process recurring payments or fast checkouts.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/clone.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/clone.html new file mode 100644 index 0000000..284323f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/clone.html @@ -0,0 +1,38 @@ + + + + clone + + +
+
+ + +
+
+
+
+
+
+ +
+

clone

+
+
+ +
+
open override fun clone(): PaymentMethodToken
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/equals.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/equals.html new file mode 100644 index 0000000..8bb76d6 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/equals.html @@ -0,0 +1,38 @@ + + + + equals + + +
+
+ + +
+
+
+
+
+
+ +
+

equals

+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/get-accessibility-title.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/get-accessibility-title.html new file mode 100644 index 0000000..8e55825 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/get-accessibility-title.html @@ -0,0 +1,38 @@ + + + + getAccessibilityTitle + + +
+
+ + +
+
+
+
+
+
+ +
+

getAccessibilityTitle

+
+
+ +
+
open fun getAccessibilityTitle(context: Context): String
+
+

For TalkBack this title is used instead of displayTitle.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/get-display-title.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/get-display-title.html new file mode 100644 index 0000000..afb7d65 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/get-display-title.html @@ -0,0 +1,38 @@ + + + + getDisplayTitle + + +
+
+ + +
+
+
+
+
+
+ +
+

getDisplayTitle

+
+
+ +
+
open fun getDisplayTitle(context: Context): String
+
+

A human readable title

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/hash-code.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/hash-code.html new file mode 100644 index 0000000..ffbd8d6 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/hash-code.html @@ -0,0 +1,38 @@ + + + + hashCode + + +
+
+ + +
+
+
+
+
+
+ +
+

hashCode

+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/index.html new file mode 100644 index 0000000..cf6a80e --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/index.html @@ -0,0 +1,267 @@ + + + + PaymentMethodToken + + +
+
+ + +
+
+
+
+
+
+ +
+

PaymentMethodToken

+
open class PaymentMethodToken(type: PaymentMethodType, token: String) : Serializable, Cloneable

This class is the base token class to gather token information and process recurring payments or fast checkouts with any payment method. This class is sufficient to process payments with tokens of some payment methods (e.g. Twint). More complex payment methods require you to specify some more details in their token subclasses (e.g. card payments, PostFinance, etc.). Please refer to the list below to see if you need to call an additional token subclass for your payments.

  • Easy payment methods: Swisscom Easypay, SEPA (ELV), Twint, Google Pay, Byjuno, SwissPass, Powerpay Invoice

  • Complex payment methods (requiring token subclass): Card payments, PayPal, PostFinance, Reka

Please refer to the Datatrans documentation to see if you can register a token during payment or require a dedicated registration.

+
+
+
+
+

Parameters

+
+
type

Payment method type, e.g. PayPal or Twint.

token

The token that can be used to process recurring payments or fast checkouts.

+
+

Constructors

+
+
+
+
PaymentMethodToken +
Link copied to clipboard
+
+
+
+
fun PaymentMethodToken(type: PaymentMethodType, token: String)
This constructor has to be used to initialize a payment object.
+
+
+
+
+
+

Types

+
+
+
+
Companion +
Link copied to clipboard
+
+
+
+ +
+
object Companion
+
+
+
+
+
+
+
+

Functions

+
+
+
+
clone +
Link copied to clipboard
+
+
+
+ +
+
open override fun clone(): PaymentMethodToken
+
+
+
+
+
+
+ +
+
+
equals +
Link copied to clipboard
+
+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+
+
+ +
+
+
getAccessibilityTitle +
Link copied to clipboard
+
+
+
+ +
+
open fun getAccessibilityTitle(context: Context): String
+
+
For TalkBack this title is used instead of displayTitle.
+
+
+
+
+ +
+
+
getDisplayTitle +
Link copied to clipboard
+
+
+
+ +
+
open fun getDisplayTitle(context: Context): String
+
+
A human readable title
+
+
+
+
+ +
+
+
hashCode +
Link copied to clipboard
+
+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+
+
+
+ +
+
+
toJson +
Link copied to clipboard
+
+
+
+ +
+
fun toJson(): String
+
+
Returns a JSON string representation of this token payment object.
+
+
+
+
+ +
+
+
toString +
Link copied to clipboard
+
+
+
+ +
+
open override fun toString(): String
+
+
+
+
+
+
+
+

Properties

+
+
+
+
isValid +
Link copied to clipboard
+
+
+
+
open val isValid: Boolean = true
Checks if the payment method token is valid.
+
+
+
+
+ +
+
+
token +
Link copied to clipboard
+
+
+
+
open var token: String
The token that can be used to process recurring payments or fast checkouts.
+
+
+
+
+ +
+
+
type +
Link copied to clipboard
+
+
+
+
val type: PaymentMethodType
Payment method type, e.g.
+
+
+
+
+
+

Inheritors

+
+
+
+
CardToken +
Link copied to clipboard
+
+
+
+
+ +
+
+
PayPalToken +
Link copied to clipboard
+
+
+
+
+ +
+
+
SEPAToken +
Link copied to clipboard
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/is-valid.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/is-valid.html new file mode 100644 index 0000000..6e61361 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/is-valid.html @@ -0,0 +1,38 @@ + + + + isValid + + +
+
+ + +
+
+
+
+
+
+ +
+

isValid

+
+
+ +
+
open val isValid: Boolean = true
+
+

Checks if the payment method token is valid. This property will also be used to tell you if data (e.g. expiry date) from the token subclasses is correct or not.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/to-json.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/to-json.html new file mode 100644 index 0000000..be6674f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/to-json.html @@ -0,0 +1,38 @@ + + + + toJson + + +
+
+ + +
+
+
+
+
+
+ +
+

toJson

+
+
+ +
+
fun toJson(): String
+
+

Returns a JSON string representation of this token payment object. This is a convenience method for serialization/deserialization.

Return

The JSON string representation

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/to-string.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/to-string.html new file mode 100644 index 0000000..e75f16b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/to-string.html @@ -0,0 +1,38 @@ + + + + toString + + +
+
+ + +
+
+
+
+
+
+ +
+

toString

+
+
+ +
+
open override fun toString(): String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/token.html new file mode 100644 index 0000000..fb08853 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/token.html @@ -0,0 +1,38 @@ + + + + token + + +
+
+ + +
+
+
+
+
+
+ +
+

token

+
+
+ +
+
open var token: String
+
+

The token that can be used to process recurring payments or fast checkouts.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/type.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/type.html new file mode 100644 index 0000000..7381d7e --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/type.html @@ -0,0 +1,38 @@ + + + + type + + +
+
+ + +
+
+
+
+
+
+ +
+

type

+
+
+ +
+
val type: PaymentMethodType
+
+

Payment method type, e.g. Visa.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/identifier.html new file mode 100644 index 0000000..588a2ad --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/index.html new file mode 100644 index 0000000..808a6c7 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/index.html @@ -0,0 +1,79 @@ + + + + AMERICAN_EXPRESS + + +
+
+ + +
+
+
+
+
+
+ +
+

AMERICAN_EXPRESS

+
AMERICAN_EXPRESS("AMX", R.string.payment_method_american_express, 15, listOf(4, 10), 4, listOf("34", "37"), R.drawable.dtpl_payment_method_amx)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/name.html new file mode 100644 index 0000000..e0661f3 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/ordinal.html new file mode 100644 index 0000000..711bc6f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/identifier.html new file mode 100644 index 0000000..764d627 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/index.html new file mode 100644 index 0000000..a7d0b5b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/index.html @@ -0,0 +1,79 @@ + + + + BONCARD + + +
+
+ + +
+
+
+
+
+
+ +
+

BONCARD

+
BONCARD("BON", "Lunch-Check", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_bon)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/name.html new file mode 100644 index 0000000..515756c --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/ordinal.html new file mode 100644 index 0000000..dde09a8 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/identifier.html new file mode 100644 index 0000000..0e55c0e --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/index.html new file mode 100644 index 0000000..ccffbf5 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/index.html @@ -0,0 +1,79 @@ + + + + BYJUNO + + +
+
+ + +
+
+
+
+
+
+ +
+

BYJUNO

+
BYJUNO("INT", R.string.payment_method_int, PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_int)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/name.html new file mode 100644 index 0000000..d0d8fad --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/ordinal.html new file mode 100644 index 0000000..4b8f9b8 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/from-identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/from-identifier.html new file mode 100644 index 0000000..46b70c4 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/from-identifier.html @@ -0,0 +1,38 @@ + + + + fromIdentifier + + +
+
+ + +
+
+
+
+
+
+ +
+

fromIdentifier

+
+
+ +
+
fun fromIdentifier(identifier: String): PaymentMethodType?
+
+

This function returns the PaymentMethodType based on the Datatrans payment method identifier.

Return

The payment method type, e.g. Visa

Parameters

identifier

The payment method identifier from Datatrans

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/index.html new file mode 100644 index 0000000..6e5e9bc --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/index.html @@ -0,0 +1,57 @@ + + + + Companion + + +
+
+ + +
+
+
+
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+

Functions

+
+
+
+
fromIdentifier +
Link copied to clipboard
+
+
+
+ +
+
fun fromIdentifier(identifier: String): PaymentMethodType?
+
+
This function returns the PaymentMethodType based on the Datatrans payment method identifier.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/identifier.html new file mode 100644 index 0000000..f8a00ad --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/index.html new file mode 100644 index 0000000..ab81a99 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/index.html @@ -0,0 +1,79 @@ + + + + DINERS_CLUB + + +
+
+ + +
+
+
+
+
+
+ +
+

DINERS_CLUB

+
DINERS_CLUB("DIN", R.string.payment_method_diners_club, 14, listOf(4, 10), 3, listOf("30", "36", "38", "39"), R.drawable.dtpl_payment_method_din)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/name.html new file mode 100644 index 0000000..9cc5bf4 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/ordinal.html new file mode 100644 index 0000000..634ab74 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/identifier.html new file mode 100644 index 0000000..ac2f82d --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/index.html new file mode 100644 index 0000000..031da91 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/index.html @@ -0,0 +1,79 @@ + + + + DISCOVER + + +
+
+ + +
+
+
+
+
+
+ +
+

DISCOVER

+
DISCOVER("DIS", "Discover", 16, listOf(4, 8, 12), 3, listOf("60", "64", "65", "622"), R.drawable.dtpl_payment_method_dis)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/name.html new file mode 100644 index 0000000..b4fc953 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/ordinal.html new file mode 100644 index 0000000..3619ca1 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/identifier.html new file mode 100644 index 0000000..9999bf0 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/index.html new file mode 100644 index 0000000..598dcda --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/index.html @@ -0,0 +1,79 @@ + + + + EASYPAY + + +
+
+ + +
+
+
+
+
+
+ +
+

EASYPAY

+
EASYPAY("ESY", R.string.payment_method_easypay, PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_esy)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/name.html new file mode 100644 index 0000000..60e2890 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/ordinal.html new file mode 100644 index 0000000..87d46ef --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/identifier.html new file mode 100644 index 0000000..758ccb6 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/index.html new file mode 100644 index 0000000..d8979b2 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/index.html @@ -0,0 +1,79 @@ + + + + GOOGLE_PAY + + +
+
+ + +
+
+
+
+
+
+ +
+

GOOGLE_PAY

+
GOOGLE_PAY("PAY", "Google Pay", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_pay)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/name.html new file mode 100644 index 0000000..f631a0f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/ordinal.html new file mode 100644 index 0000000..44b8e50 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/identifier.html new file mode 100644 index 0000000..96dea97 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/index.html new file mode 100644 index 0000000..58542aa --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/index.html @@ -0,0 +1,79 @@ + + + + JCB + + +
+
+ + +
+
+
+
+
+
+ +
+

JCB

+
JCB("JCB", "JCB", 16, listOf(4, 8, 12), 3, listOf("3528", "3529", "353", "354", "355", "356", "357", "358"), R.drawable.dtpl_payment_method_jcb)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/name.html new file mode 100644 index 0000000..04d2f22 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/ordinal.html new file mode 100644 index 0000000..24cbcfe --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/identifier.html new file mode 100644 index 0000000..6d49711 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/index.html new file mode 100644 index 0000000..f6f40f4 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/index.html @@ -0,0 +1,79 @@ + + + + MASTER_CARD + + +
+
+ + +
+
+
+
+
+
+ +
+

MASTER_CARD

+
MASTER_CARD("ECA", R.string.payment_method_mastercard, 16, listOf(4, 8, 12), 3, listOf("5"), R.drawable.dtpl_payment_method_eca)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/name.html new file mode 100644 index 0000000..bb8812b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/ordinal.html new file mode 100644 index 0000000..9821506 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/identifier.html new file mode 100644 index 0000000..c2778a2 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/index.html new file mode 100644 index 0000000..ff5574f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/index.html @@ -0,0 +1,79 @@ + + + + MY_ONE + + +
+
+ + +
+
+
+
+
+
+ +
+

MY_ONE

+
MY_ONE("MYO", "MyOne", 19, listOf(9, 16), 3, listOf("60045202"), R.drawable.dtpl_payment_method_myo)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/name.html new file mode 100644 index 0000000..400d0ed --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/ordinal.html new file mode 100644 index 0000000..d5c4260 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/identifier.html new file mode 100644 index 0000000..35be068 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/index.html new file mode 100644 index 0000000..d6eaadc --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/index.html @@ -0,0 +1,79 @@ + + + + PAYSAFECARD + + +
+
+ + +
+
+
+
+
+
+ +
+

PAYSAFECARD

+
PAYSAFECARD("PSC", "Paysafecard", null, R.drawable.dtpl_payment_method_psc)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/name.html new file mode 100644 index 0000000..dfea7d0 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/ordinal.html new file mode 100644 index 0000000..5798471 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/identifier.html new file mode 100644 index 0000000..92aa911 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/index.html new file mode 100644 index 0000000..355234a --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/index.html @@ -0,0 +1,79 @@ + + + + PAY_PAL + + +
+
+ + +
+
+
+
+
+
+ +
+

PAY_PAL

+
PAY_PAL("PAP", R.string.payment_method_paypal, PayPalToken::class.java, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pap, PaymentMethodFlags.EXTERNAL_WEB_PROCESS)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/name.html new file mode 100644 index 0000000..1d00120 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/ordinal.html new file mode 100644 index 0000000..089b3ff --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/identifier.html new file mode 100644 index 0000000..9e0b853 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/index.html new file mode 100644 index 0000000..a89083b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/index.html @@ -0,0 +1,79 @@ + + + + POST_FINANCE_CARD + + +
+
+ + +
+
+
+
+
+
+ +
+

POST_FINANCE_CARD

+
POST_FINANCE_CARD("PFC", R.string.payment_method_postfinance_card, PostFinanceCardToken::class.java, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pfc)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/name.html new file mode 100644 index 0000000..6b37b13 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/ordinal.html new file mode 100644 index 0000000..11d4890 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/identifier.html new file mode 100644 index 0000000..e8bf15e --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/index.html new file mode 100644 index 0000000..08467a2 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/index.html @@ -0,0 +1,79 @@ + + + + POST_FINANCE_EFINANCE + + +
+
+ + +
+
+
+
+
+
+ +
+

POST_FINANCE_EFINANCE

+
POST_FINANCE_EFINANCE("PEF", R.string.payment_method_postfinance, null, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pef)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/name.html new file mode 100644 index 0000000..2679ef0 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/ordinal.html new file mode 100644 index 0000000..8ee5ada --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/identifier.html new file mode 100644 index 0000000..03dc36b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/index.html new file mode 100644 index 0000000..15be9b9 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/index.html @@ -0,0 +1,79 @@ + + + + POWERPAY + + +
+
+ + +
+
+
+
+
+
+ +
+

POWERPAY

+
POWERPAY("MFX", R.string.payment_method_powerpay, PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_mfx)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/name.html new file mode 100644 index 0000000..f9c7d6f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/ordinal.html new file mode 100644 index 0000000..b0ef2fb --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/identifier.html new file mode 100644 index 0000000..249a8eb --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/index.html new file mode 100644 index 0000000..4633a74 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/index.html @@ -0,0 +1,79 @@ + + + + REKA + + +
+
+ + +
+
+
+
+
+
+ +
+

REKA

+
REKA("REK", "Reka", RekaToken::class.java, R.drawable.dtpl_payment_method_rek)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/name.html new file mode 100644 index 0000000..eb40205 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/ordinal.html new file mode 100644 index 0000000..9c3b99e --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/identifier.html new file mode 100644 index 0000000..2fc8fce --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/index.html new file mode 100644 index 0000000..3f68a0f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/index.html @@ -0,0 +1,79 @@ + + + + SAMSUNG_PAY + + +
+
+ + +
+
+
+
+
+
+ +
+

SAMSUNG_PAY

+
SAMSUNG_PAY("SAM", "Samsung Pay", null, R.drawable.dtpl_payment_method_sam)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/name.html new file mode 100644 index 0000000..dbc0ab2 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/ordinal.html new file mode 100644 index 0000000..bd6b421 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/identifier.html new file mode 100644 index 0000000..656a9ce --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/index.html new file mode 100644 index 0000000..21ae7dd --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/index.html @@ -0,0 +1,79 @@ + + + + SEPA + + +
+
+ + +
+
+
+
+
+
+ +
+

SEPA

+
SEPA("ELV", R.string.payment_method_elv, SEPAToken::class.java, R.drawable.dtpl_payment_method_elv)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/name.html new file mode 100644 index 0000000..e1c1d24 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/ordinal.html new file mode 100644 index 0000000..0b4c75d --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/identifier.html new file mode 100644 index 0000000..6ce378d --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/index.html new file mode 100644 index 0000000..00db446 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/index.html @@ -0,0 +1,79 @@ + + + + SUPERCARD + + +
+
+ + +
+
+
+
+
+
+ +
+

SUPERCARD

+
SUPERCARD("SCX", "SUPERCARD", 16, listOf(4, 8, 12), 3, listOf("435379", "435378", "54688725"), R.drawable.dtpl_payment_method_scx)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/name.html new file mode 100644 index 0000000..b9d9337 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/ordinal.html new file mode 100644 index 0000000..da91bb7 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/identifier.html new file mode 100644 index 0000000..cd58cd7 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/index.html new file mode 100644 index 0000000..4c07e14 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/index.html @@ -0,0 +1,79 @@ + + + + SWISS_BILLING + + +
+
+ + +
+
+
+
+
+
+ +
+

SWISS_BILLING

+
SWISS_BILLING("SWB", R.string.payment_method_swissbilling, null, R.drawable.dtpl_payment_method_swb)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/name.html new file mode 100644 index 0000000..9de2bb5 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/ordinal.html new file mode 100644 index 0000000..164a8ab --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/identifier.html new file mode 100644 index 0000000..4d7bf87 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/index.html new file mode 100644 index 0000000..e1ba3f0 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/index.html @@ -0,0 +1,79 @@ + + + + SWISS_PASS + + +
+
+ + +
+
+
+
+
+
+ +
+

SWISS_PASS

+
SWISS_PASS("SWP", "SwissPass", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_swp)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/name.html new file mode 100644 index 0000000..f8fc209 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/ordinal.html new file mode 100644 index 0000000..b5abde8 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/identifier.html new file mode 100644 index 0000000..1dfc340 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/index.html new file mode 100644 index 0000000..5dfdb42 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/index.html @@ -0,0 +1,79 @@ + + + + TWINT + + +
+
+ + +
+
+
+
+
+
+ +
+

TWINT

+
TWINT("TWI", "TWINT", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_twi)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/name.html new file mode 100644 index 0000000..4669d55 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/ordinal.html new file mode 100644 index 0000000..2815831 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/identifier.html new file mode 100644 index 0000000..6fd9716 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/index.html new file mode 100644 index 0000000..9166a1b --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/index.html @@ -0,0 +1,79 @@ + + + + UATP + + +
+
+ + +
+
+
+
+
+
+ +
+

UATP

+
UATP("UAP", "UATP", 15, listOf(4, 9), 0, listOf("1"), R.drawable.dtpl_payment_method_uap)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/name.html new file mode 100644 index 0000000..c5587a4 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/ordinal.html new file mode 100644 index 0000000..a5b8e42 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/identifier.html new file mode 100644 index 0000000..d368a2f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/index.html new file mode 100644 index 0000000..1e91fb1 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/index.html @@ -0,0 +1,79 @@ + + + + VISA + + +
+
+ + +
+
+
+
+
+
+ +
+

VISA

+
VISA("VIS", R.string.payment_method_visa, 16, listOf(4, 8, 12), 3, listOf("4"), R.drawable.dtpl_payment_method_vis)
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/name.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/name.html new file mode 100644 index 0000000..0c82bfd --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/name.html @@ -0,0 +1,38 @@ + + + + name + + +
+
+ + +
+
+
+
+
+
+ +
+

name

+
+
+ +
+
val name: String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/ordinal.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/ordinal.html new file mode 100644 index 0000000..a09a3a6 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/ordinal.html @@ -0,0 +1,38 @@ + + + + ordinal + + +
+
+ + +
+
+
+
+
+
+ +
+

ordinal

+
+
+ +
+
val ordinal: Int
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/identifier.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/identifier.html new file mode 100644 index 0000000..08b77bf --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/identifier.html @@ -0,0 +1,38 @@ + + + + identifier + + +
+
+ + +
+
+
+
+
+
+ +
+

identifier

+
+
+ +
+
val identifier: String
+
+

The payment method identifier based on the PaymentMethodType.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/index.html new file mode 100644 index 0000000..a58415d --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/index.html @@ -0,0 +1,412 @@ + + + + PaymentMethodType + + +
+
+ + +
+
+
+
+
+
+ +
+

PaymentMethodType

+
enum PaymentMethodType : Enum<PaymentMethodType>

The payment method used during the transaction.

+
+
+
+
+

Entries

+
+
+
+
PAYSAFECARD +
Link copied to clipboard
+
+
+
+
PAYSAFECARD("PSC", "Paysafecard", null, R.drawable.dtpl_payment_method_psc)
+
+
+
+
+ +
+
+
POWERPAY +
Link copied to clipboard
+
+
+
+
POWERPAY("MFX", R.string.payment_method_powerpay, PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_mfx)
+
+
+
+
+ +
+
+
SWISS_PASS +
Link copied to clipboard
+
+
+
+
SWISS_PASS("SWP", "SwissPass", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_swp)
+
+
+
+
+ +
+
+
BYJUNO +
Link copied to clipboard
+
+
+
+
BYJUNO("INT", R.string.payment_method_int, PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_int)
+
+
+
+
+ +
+
+
REKA +
Link copied to clipboard
+
+
+
+
REKA("REK", "Reka", RekaToken::class.java, R.drawable.dtpl_payment_method_rek)
+
+
+
+
+ +
+
+
SAMSUNG_PAY +
Link copied to clipboard
+
+
+
+
SAMSUNG_PAY("SAM", "Samsung Pay", null, R.drawable.dtpl_payment_method_sam)
+
+
+
+
+ +
+
+
GOOGLE_PAY +
Link copied to clipboard
+
+
+
+
GOOGLE_PAY("PAY", "Google Pay", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_pay)
+
+
+
+
+ +
+
+
TWINT +
Link copied to clipboard
+
+
+
+
TWINT("TWI", "TWINT", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_twi)
+
+
+
+
+ +
+
+
SWISS_BILLING +
Link copied to clipboard
+
+
+
+
SWISS_BILLING("SWB", R.string.payment_method_swissbilling, null, R.drawable.dtpl_payment_method_swb)
+
+
+
+
+ +
+
+
SEPA +
Link copied to clipboard
+
+
+
+
SEPA("ELV", R.string.payment_method_elv, SEPAToken::class.java, R.drawable.dtpl_payment_method_elv)
+
+
+
+
+ +
+
+
EASYPAY +
Link copied to clipboard
+
+
+
+
EASYPAY("ESY", R.string.payment_method_easypay, PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_esy)
+
+
+
+
+ +
+
+
PAY_PAL +
Link copied to clipboard
+
+
+
+
PAY_PAL("PAP", R.string.payment_method_paypal, PayPalToken::class.java, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pap, PaymentMethodFlags.EXTERNAL_WEB_PROCESS)
+
+
+
+
+ +
+
+
POST_FINANCE_EFINANCE +
Link copied to clipboard
+
+
+
+
POST_FINANCE_EFINANCE("PEF", R.string.payment_method_postfinance, null, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pef)
+
+
+
+
+ +
+
+
POST_FINANCE_CARD +
Link copied to clipboard
+
+
+
+
POST_FINANCE_CARD("PFC", R.string.payment_method_postfinance_card, PostFinanceCardToken::class.java, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pfc)
+
+
+
+
+ +
+
+
BONCARD +
Link copied to clipboard
+
+
+
+
BONCARD("BON", "Lunch-Check", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_bon)
+
+
+
+
+ +
+
+
SUPERCARD +
Link copied to clipboard
+
+
+
+
SUPERCARD("SCX", "SUPERCARD", 16, listOf(4, 8, 12), 3, listOf("435379", "435378", "54688725"), R.drawable.dtpl_payment_method_scx)
+
+
+
+
+ +
+
+
DISCOVER +
Link copied to clipboard
+
+
+
+
DISCOVER("DIS", "Discover", 16, listOf(4, 8, 12), 3, listOf("60", "64", "65", "622"), R.drawable.dtpl_payment_method_dis)
+
+
+
+
+ +
+
+
UATP +
Link copied to clipboard
+
+
+
+
UATP("UAP", "UATP", 15, listOf(4, 9), 0, listOf("1"), R.drawable.dtpl_payment_method_uap)
+
+
+
+
+ +
+
+
MY_ONE +
Link copied to clipboard
+
+
+
+
MY_ONE("MYO", "MyOne", 19, listOf(9, 16), 3, listOf("60045202"), R.drawable.dtpl_payment_method_myo)
+
+
+
+
+ +
+
+
JCB +
Link copied to clipboard
+
+
+
+
JCB("JCB", "JCB", 16, listOf(4, 8, 12), 3, listOf("3528", "3529", "353", "354", "355", "356", "357", "358"), R.drawable.dtpl_payment_method_jcb)
+
+
+
+
+ +
+
+
AMERICAN_EXPRESS +
Link copied to clipboard
+
+
+
+
AMERICAN_EXPRESS("AMX", R.string.payment_method_american_express, 15, listOf(4, 10), 4, listOf("34", "37"), R.drawable.dtpl_payment_method_amx)
+
+
+
+
+ +
+
+
DINERS_CLUB +
Link copied to clipboard
+
+
+
+
DINERS_CLUB("DIN", R.string.payment_method_diners_club, 14, listOf(4, 10), 3, listOf("30", "36", "38", "39"), R.drawable.dtpl_payment_method_din)
+
+
+
+
+ +
+
+
MASTER_CARD +
Link copied to clipboard
+
+
+
+
MASTER_CARD("ECA", R.string.payment_method_mastercard, 16, listOf(4, 8, 12), 3, listOf("5"), R.drawable.dtpl_payment_method_eca)
+
+
+
+
+ +
+
+
VISA +
Link copied to clipboard
+
+
+
+
VISA("VIS", R.string.payment_method_visa, 16, listOf(4, 8, 12), 3, listOf("4"), R.drawable.dtpl_payment_method_vis)
+
+
+
+
+
+

Types

+
+
+
+
Companion +
Link copied to clipboard
+
+
+
+ +
+
object Companion
+
+
+
+
+
+
+
+

Properties

+
+
+
+
identifier +
Link copied to clipboard
+
+
+
+
val identifier: String
The payment method identifier based on the PaymentMethodType.
+
+
+
+
+ +
+
+
name +
Link copied to clipboard
+
+
+
+
val name: String
+
+
+
+
+ +
+
+
ordinal +
Link copied to clipboard
+
+
+
+
val ordinal: Int
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/-post-finance-card-token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/-post-finance-card-token.html new file mode 100644 index 0000000..f14aba8 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/-post-finance-card-token.html @@ -0,0 +1,38 @@ + + + + PostFinanceCardToken + + +
+
+ + +
+
+
+
+
+
+ +
+

PostFinanceCardToken

+
+
+ +
+
fun PostFinanceCardToken(token: String, cardExpiryDate: CardExpiryDate? = null, maskedCardNumber: String?)
+
+

This constructor has to be used to initialize a PostFinance Card payment object.

Parameters

token

Token for a PostFinance Card

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the last 4 digits of the card, e.g. **** 1234.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/clone.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/clone.html new file mode 100644 index 0000000..615e796 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/clone.html @@ -0,0 +1,38 @@ + + + + clone + + +
+
+ + +
+
+
+
+
+
+ +
+

clone

+
+
+ +
+
open override fun clone(): PostFinanceCardToken
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/index.html new file mode 100644 index 0000000..f213d84 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/index.html @@ -0,0 +1,258 @@ + + + + PostFinanceCardToken + + +
+
+ + +
+
+
+
+
+
+ +
+

PostFinanceCardToken

+
class PostFinanceCardToken(token: String, cardExpiryDate: CardExpiryDate?, maskedCardNumber: String?) : CardToken

This class contains the token information about a PostFinance Card registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to show a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful PostFinance Card payment or with a dedicated registration.

+
+
+
+
+

Parameters

+
+
token

Token for a PostFinance Card

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the last 4 digits of the card, e.g. **** 1234.

+
+

Constructors

+
+
+
+
PostFinanceCardToken +
Link copied to clipboard
+
+
+
+
fun PostFinanceCardToken(token: String, cardExpiryDate: CardExpiryDate? = null, maskedCardNumber: String?)
This constructor has to be used to initialize a PostFinance Card payment object.
+
+
+
+
+
+

Functions

+
+
+
+
clone +
Link copied to clipboard
+
+
+
+ +
+
open override fun clone(): PostFinanceCardToken
+
+
+
+
+
+
+ +
+
+
equals +
Link copied to clipboard
+
+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+
+
+ +
+
+
getAccessibilityTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getAccessibilityTitle(context: Context): String
+
+
For TalkBack this title is used instead of displayTitle.
+
+
+
+
+ +
+
+
getDisplayTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDisplayTitle(context: Context): String
+
+
A human readable title e.g.
+
+
+
+
+ +
+
+
hashCode +
Link copied to clipboard
+
+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+
+
+
+ +
+
+
toJson +
Link copied to clipboard
+
+
+
+ +
+
fun toJson(): String
+
+
Returns a JSON string representation of this token payment object.
+
+
+
+
+ +
+
+
toString +
Link copied to clipboard
+
+
+
+ +
+
open override fun toString(): String
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cardExpiryDate +
Link copied to clipboard
+
+
+
+
var cardExpiryDate: CardExpiryDate? = null
Expiry date
+
+
+
+
+ +
+
+
cardholder +
Link copied to clipboard
+
+
+
+
var cardholder: String? = null
Cardholder's name
+
+
+
+
+ +
+
+
isValid +
Link copied to clipboard
+
+
+
+
open override val isValid: Boolean
Checks if the expiration date is in the future or not.
+
+
+
+
+ +
+
+
maskedCardNumber +
Link copied to clipboard
+
+
+
+
var maskedCardNumber: String? = null
The masked card number you can use to display that specific card in your app.
+
+
+
+
+ +
+
+
token +
Link copied to clipboard
+
+
+
+
open var token: String
The token that can be used to process recurring payments or fast checkouts.
+
+
+
+
+ +
+
+
type +
Link copied to clipboard
+
+
+
+
val type: PaymentMethodType
Payment method type, e.g.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/-reka-token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/-reka-token.html new file mode 100644 index 0000000..8aa5557 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/-reka-token.html @@ -0,0 +1,38 @@ + + + + RekaToken + + +
+
+ + +
+
+
+
+
+
+ +
+

RekaToken

+
+
+ +
+
fun RekaToken(token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?)
+
+

This constructor has to be used to initialize a Reka payment object.

Parameters

token

Token for a Reka card

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the first 6 digits and the last 4 digits of the card, e.g. 123456xxxxxxxxx1234.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/clone.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/clone.html new file mode 100644 index 0000000..e842162 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/clone.html @@ -0,0 +1,38 @@ + + + + clone + + +
+
+ + +
+
+
+
+
+
+ +
+

clone

+
+
+ +
+
open override fun clone(): RekaToken
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/index.html new file mode 100644 index 0000000..c4b3f23 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/index.html @@ -0,0 +1,258 @@ + + + + RekaToken + + +
+
+ + +
+
+
+
+
+
+ +
+

RekaToken

+
class RekaToken(token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?) : CardToken

This class contains the token information about a Reka card registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to show a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful Reka payment or with a dedicated registration.

+
+
+
+
+

Parameters

+
+
token

Token for a Reka card

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the first 6 digits and the last 4 digits of the card, e.g. 123456xxxxxxxxx1234.

+
+

Constructors

+
+
+
+
RekaToken +
Link copied to clipboard
+
+
+
+
fun RekaToken(token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?)
This constructor has to be used to initialize a Reka payment object.
+
+
+
+
+
+

Functions

+
+
+
+
clone +
Link copied to clipboard
+
+
+
+ +
+
open override fun clone(): RekaToken
+
+
+
+
+
+
+ +
+
+
equals +
Link copied to clipboard
+
+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+
+
+ +
+
+
getAccessibilityTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getAccessibilityTitle(context: Context): String
+
+
For TalkBack this title is used instead of displayTitle.
+
+
+
+
+ +
+
+
getDisplayTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDisplayTitle(context: Context): String
+
+
A human readable title e.g.
+
+
+
+
+ +
+
+
hashCode +
Link copied to clipboard
+
+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+
+
+
+ +
+
+
toJson +
Link copied to clipboard
+
+
+
+ +
+
fun toJson(): String
+
+
Returns a JSON string representation of this token payment object.
+
+
+
+
+ +
+
+
toString +
Link copied to clipboard
+
+
+
+ +
+
open override fun toString(): String
+
+
+
+
+
+
+
+

Properties

+
+
+
+
cardExpiryDate +
Link copied to clipboard
+
+
+
+
var cardExpiryDate: CardExpiryDate? = null
Expiry date
+
+
+
+
+ +
+
+
cardholder +
Link copied to clipboard
+
+
+
+
var cardholder: String? = null
Cardholder's name
+
+
+
+
+ +
+
+
isValid +
Link copied to clipboard
+
+
+
+
open override val isValid: Boolean
Checks if the expiration date is in the future or not.
+
+
+
+
+ +
+
+
maskedCardNumber +
Link copied to clipboard
+
+
+
+
var maskedCardNumber: String? = null
The masked card number you can use to display that specific card in your app.
+
+
+
+
+ +
+
+
token +
Link copied to clipboard
+
+
+
+
open var token: String
The token that can be used to process recurring payments or fast checkouts.
+
+
+
+
+ +
+
+
type +
Link copied to clipboard
+
+
+
+
val type: PaymentMethodType
Payment method type, e.g.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/-s-e-p-a-token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/-s-e-p-a-token.html new file mode 100644 index 0000000..026b0db --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/-s-e-p-a-token.html @@ -0,0 +1,44 @@ + + + + SEPAToken + + +
+
+ + +
+
+
+
+
+
+ +
+

SEPAToken

+
+
+ +
+
fun SEPAToken(token: String, bankCode: String)
+
+

This constructor has to be used with SEPA (ELV) tokens created before April 15th 2015. Please refer to the primary constructor for newer tokens.

Parameters

token

Token for SEPA (ELV). This value was returned for tokens created before April 15th 2015.

bankCode

A bank code (German: Bankleitzahl) is a unique identification code for a particular bank. This is required for tokens created before April 15th 2015.

+
+ +
+
fun SEPAToken(token: String)
+
+

This constructor has to be used to initialize a SEPA (ELV) payment object.

Parameters

token

Token for SEPA (ELV)

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/bank-code.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/bank-code.html new file mode 100644 index 0000000..62d8213 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/bank-code.html @@ -0,0 +1,38 @@ + + + + bankCode + + +
+
+ + +
+
+
+
+
+
+ +
+

bankCode

+
+
+ +
+
val bankCode: String?
+
+

A bank code (German: Bankleitzahl) is a unique identification code for a particular bank. This is required for tokens created before April 15th 2015.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/clone.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/clone.html new file mode 100644 index 0000000..120c036 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/clone.html @@ -0,0 +1,38 @@ + + + + clone + + +
+
+ + +
+
+
+
+
+
+ +
+

clone

+
+
+ +
+
open override fun clone(): SEPAToken
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-accessibility-title.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-accessibility-title.html new file mode 100644 index 0000000..1381b3f --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-accessibility-title.html @@ -0,0 +1,38 @@ + + + + getAccessibilityTitle + + +
+
+ + +
+
+
+
+
+
+ +
+

getAccessibilityTitle

+
+
+ +
+
open override fun getAccessibilityTitle(context: Context): String
+
+

For TalkBack this title is used instead of displayTitle.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-display-title.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-display-title.html new file mode 100644 index 0000000..fb0eae1 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-display-title.html @@ -0,0 +1,38 @@ + + + + getDisplayTitle + + +
+
+ + +
+
+
+
+
+
+ +
+

getDisplayTitle

+
+
+ +
+
open override fun getDisplayTitle(context: Context): String
+
+

A human readable title

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/index.html new file mode 100644 index 0000000..6e0cbc0 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/index.html @@ -0,0 +1,245 @@ + + + + SEPAToken + + +
+
+ + +
+
+
+
+
+
+ +
+

SEPAToken

+
class SEPAToken(token: String) : PaymentMethodToken

This class contains the token information about a SEPA (ELV) registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to show a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful SEPA payment or with a dedicated registration.

+
+
+
+
+

Parameters

+
+
token

Token for SEPA (ELV)

+
+

Constructors

+
+
+
+
SEPAToken +
Link copied to clipboard
+
+
+
+
fun SEPAToken(token: String, bankCode: String)
This constructor has to be used with SEPA (ELV) tokens created before April 15th 2015.
+
+
+
+
+ +
+
+
SEPAToken +
Link copied to clipboard
+
+
+
+
fun SEPAToken(token: String)
This constructor has to be used to initialize a SEPA (ELV) payment object.
+
+
+
+
+
+

Functions

+
+
+
+
clone +
Link copied to clipboard
+
+
+
+ +
+
open override fun clone(): SEPAToken
+
+
+
+
+
+
+ +
+
+
equals +
Link copied to clipboard
+
+
+
+ +
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+
+
+ +
+
+
getAccessibilityTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getAccessibilityTitle(context: Context): String
+
+
For TalkBack this title is used instead of displayTitle.
+
+
+
+
+ +
+
+
getDisplayTitle +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDisplayTitle(context: Context): String
+
+
A human readable title
+
+
+
+
+ +
+
+
hashCode +
Link copied to clipboard
+
+
+
+ +
+
open override fun hashCode(): Int
+
+
+
+
+
+
+ +
+
+
toJson +
Link copied to clipboard
+
+
+
+ +
+
fun toJson(): String
+
+
Returns a JSON string representation of this token payment object.
+
+
+
+
+ +
+
+
toString +
Link copied to clipboard
+
+
+
+ +
+
open override fun toString(): String
+
+
+
+
+
+
+
+

Properties

+
+
+
+
bankCode +
Link copied to clipboard
+
+
+
+
val bankCode: String?
A bank code (German: Bankleitzahl) is a unique identification code for a particular bank.
+
+
+
+
+ +
+
+
isValid +
Link copied to clipboard
+
+
+
+
open val isValid: Boolean = true
Checks if the payment method token is valid.
+
+
+
+
+ +
+
+
token +
Link copied to clipboard
+
+
+
+
open override var token: String
Token for SEPA (ELV)
+
+
+
+
+ +
+
+
type +
Link copied to clipboard
+
+
+
+
val type: PaymentMethodType
Payment method type, e.g.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/to-string.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/to-string.html new file mode 100644 index 0000000..ace9264 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/to-string.html @@ -0,0 +1,38 @@ + + + + toString + + +
+
+ + +
+
+
+
+
+
+ +
+

toString

+
+
+ +
+
open override fun toString(): String
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/token.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/token.html new file mode 100644 index 0000000..cb69c69 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/token.html @@ -0,0 +1,38 @@ + + + + token + + +
+
+ + +
+
+
+
+
+
+ +
+

token

+
+
+ +
+
open override var token: String
+
+

Token for SEPA (ELV)

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/has-samsung-pay.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/has-samsung-pay.html new file mode 100644 index 0000000..cfaf79c --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/has-samsung-pay.html @@ -0,0 +1,38 @@ + + + + hasSamsungPay + + +
+
+ + +
+
+
+
+
+
+ +
+

hasSamsungPay

+
+
+ +
+
suspend fun hasSamsungPay(context: Context, supportedNetworks: List<PaymentMethodType>, isTesting: Boolean = false): Boolean
+
+

Although the library automatically hides Samsung Pay if no cards are supported, this shows if Samsung Pay is available for the specified card acquirers.

Return

True if Samsung Pay is available on the device, false if it is unavailable.

Parameters

context

Android context

supportedNetworks

Supported card acquirers

isTesting

True if running on sandbox, false otherwise. Default is false.

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/index.html new file mode 100644 index 0000000..4d309fe --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/index.html @@ -0,0 +1,57 @@ + + + + Companion + + +
+
+ + +
+
+
+
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+

Functions

+
+
+
+
hasSamsungPay +
Link copied to clipboard
+
+
+
+ +
+
suspend fun hasSamsungPay(context: Context, supportedNetworks: List<PaymentMethodType>, isTesting: Boolean = false): Boolean
+
+
Although the library automatically hides Samsung Pay if no cards are supported, this shows if Samsung Pay is available for the specified card acquirers.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-samsung-pay-config.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-samsung-pay-config.html new file mode 100644 index 0000000..43cb78d --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-samsung-pay-config.html @@ -0,0 +1,38 @@ + + + + SamsungPayConfig + + +
+
+ + +
+
+
+
+
+
+ +
+

SamsungPayConfig

+
+
+ +
+
fun SamsungPayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String)
+
+

Parameters

supportedNetworks

Supported card acquirers

merchantName

The displayed merchant name

+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/index.html new file mode 100644 index 0000000..b75b123 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/index.html @@ -0,0 +1,72 @@ + + + + SamsungPayConfig + + +
+
+ + +
+
+
+
+
+
+ +
+

SamsungPayConfig

+
open class SamsungPayConfig

Class for transaction configurations for Samsung Pay payments.

+
+
+
+
+

Constructors

+
+
+
+
SamsungPayConfig +
Link copied to clipboard
+
+
+
+
fun SamsungPayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String)
Creates a new SamsungPayConfig object.
+
+
+
+
+
+

Types

+
+
+
+
Companion +
Link copied to clipboard
+
+
+
+ +
+
object Companion
+
+
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/index.html new file mode 100644 index 0000000..e53f7f5 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/index.html @@ -0,0 +1,226 @@ + + + + ch.datatrans.payment.paymentmethods + + +
+
+ + +
+
+
+
+
+
+ +
+

Package ch.datatrans.payment.paymentmethods

+
+
+
+
+

Types

+
+
+
+
Card +
Link copied to clipboard
+
+
+
+ +
+
class Card(type: PaymentMethodType, number: String, expiryDate: CardExpiryDate, cvv: String?, cardholder: String?)
+
+
Use this class to process raw card data for payments.
+
+
+
+
+ +
+
+
CardExpiryDate +
Link copied to clipboard
+
+
+
+ +
+
class CardExpiryDate(month: Int, year: Int) : Serializable
+
+
Class to be used to represent the card expiry date (month and year).
+
+
+
+
+ +
+
+
CardToken +
Link copied to clipboard
+
+
+
+ +
+
open class CardToken : PaymentMethodToken
+
+
This class contains the token information about a credit or debit card registration from a previously completed transaction.
+
+
+
+
+ +
+
+
GooglePayConfig +
Link copied to clipboard
+
+
+
+ +
+
data class GooglePayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean)
+
+
Configuration object for Google Pay transactions.
+
+
+
+
+ +
+
+
PaymentMethodToken +
Link copied to clipboard
+
+
+
+ +
+
open class PaymentMethodToken(type: PaymentMethodType, token: String) : Serializable, Cloneable
+
+
This class is the base token class to gather token information and process recurring payments or fast checkouts with any payment method.
+
+
+
+
+ +
+
+
PaymentMethodType +
Link copied to clipboard
+
+
+
+ +
+
enum PaymentMethodType : Enum<PaymentMethodType>
+
+
The payment method used during the transaction.
+
+
+
+
+ +
+
+
PayPalToken +
Link copied to clipboard
+
+
+
+ +
+
class PayPalToken(token: String, payPalEmail: String?) : PaymentMethodToken
+
+
This class contains the token information about a PayPal registration from a previously completed transaction.
+
+
+
+
+ +
+
+
PostFinanceCardToken +
Link copied to clipboard
+
+
+
+ +
+
class PostFinanceCardToken(token: String, cardExpiryDate: CardExpiryDate?, maskedCardNumber: String?) : CardToken
+
+
This class contains the token information about a PostFinance Card registration from a previously completed transaction.
+
+
+
+
+ +
+
+
RekaToken +
Link copied to clipboard
+
+
+
+ +
+
class RekaToken(token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?) : CardToken
+
+
This class contains the token information about a Reka card registration from a previously completed transaction.
+
+
+
+
+ +
+
+
SamsungPayConfig +
Link copied to clipboard
+
+
+
+ +
+
open class SamsungPayConfig
+
+
Class for transaction configurations for Samsung Pay payments.
+
+
+
+
+ +
+
+
SEPAToken +
Link copied to clipboard
+
+
+
+ +
+
class SEPAToken(token: String) : PaymentMethodToken
+
+
This class contains the token information about a SEPA (ELV) registration from a previously completed transaction.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment/-external-process-relay-activity/-external-process-relay-activity.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment/-external-process-relay-activity/-external-process-relay-activity.html new file mode 100644 index 0000000..4faa354 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment/-external-process-relay-activity/-external-process-relay-activity.html @@ -0,0 +1,38 @@ + + + + ExternalProcessRelayActivity + + +
+
+ + +
+
+
+
+
+
+ +
+

ExternalProcessRelayActivity

+
+
+ +
+
fun ExternalProcessRelayActivity()
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment/-external-process-relay-activity/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment/-external-process-relay-activity/index.html new file mode 100644 index 0000000..8c0d504 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment/-external-process-relay-activity/index.html @@ -0,0 +1,5733 @@ + + + + ExternalProcessRelayActivity + + +
+
+ + +
+
+
+
+
+
+ +
+

ExternalProcessRelayActivity

+
class ExternalProcessRelayActivity : Activity

Activity that handles switches to other external processes such as Custom Tabs which are used for PayPal. This activity must be defined in the app manifest like this:

<activity android:name="ch.datatrans.payment.ExternalProcessRelayActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="com.example.payment" />
</intent-filter>
</activity>

In addition, the defined data scheme (e.g. com.example.payment) must be set in the ch.datatrans.payment.api.TransactionOptions using ch.datatrans.payment.api.TransactionOptions.appCallbackScheme.

+
+
+
+
+

Constructors

+
+
+
+
ExternalProcessRelayActivity +
Link copied to clipboard
+
+
+
+
fun ExternalProcessRelayActivity()
+
+
+
+
+
+

Functions

+
+
+
+
addContentView +
Link copied to clipboard
+
+
+
+ +
+
open fun addContentView(p0: View, p1: ViewGroup.LayoutParams)
+
+
+
+
+
+
+ +
+
+
applyOverrideConfiguration +
Link copied to clipboard
+
+
+
+ +
+
open fun applyOverrideConfiguration(p0: Configuration)
+
+
+
+
+
+
+ +
+
+
attachBaseContext +
Link copied to clipboard
+
+
+
+ +
+
open override fun attachBaseContext(p0: Context)
+
+
+
+
+
+
+ +
+
+
bindIsolatedService +
Link copied to clipboard
+
+
+
+ +
+
open override fun bindIsolatedService(p0: Intent, p1: Int, p2: String, p3: Executor, p4: ServiceConnection): Boolean
+
+
+
+
+
+
+ +
+
+
bindService +
Link copied to clipboard
+
+
+
+ +
+
open override fun bindService(p0: Intent, p1: ServiceConnection, p2: Int): Boolean
open override fun bindService(p0: Intent, p1: Int, p2: Executor, p3: ServiceConnection): Boolean
+
+
+
+
+
+
+ +
+
+
bindServiceAsUser +
Link copied to clipboard
+
+
+
+ +
+
open override fun bindServiceAsUser(p0: Intent, p1: ServiceConnection, p2: Int, p3: UserHandle): Boolean
+
+
+
+
+
+
+ +
+
+
checkCallingOrSelfPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun checkCallingOrSelfPermission(p0: String): Int
+
+
+
+
+
+
+ +
+
+
checkCallingOrSelfUriPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun checkCallingOrSelfUriPermission(p0: Uri, p1: Int): Int
+
+
+
+
+
+
+ +
+
+
checkCallingPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun checkCallingPermission(p0: String): Int
+
+
+
+
+
+
+ +
+
+
checkCallingUriPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun checkCallingUriPermission(p0: Uri, p1: Int): Int
+
+
+
+
+
+
+ +
+
+
checkPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun checkPermission(p0: String, p1: Int, p2: Int): Int
+
+
+
+
+
+
+ +
+
+
checkSelfPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun checkSelfPermission(p0: String): Int
+
+
+
+
+
+
+ +
+
+
checkUriPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun checkUriPermission(p0: Uri, p1: Int, p2: Int, p3: Int): Int
open override fun checkUriPermission(p0: Uri?, p1: String?, p2: String?, p3: Int, p4: Int, p5: Int): Int
+
+
+
+
+
+
+ +
+
+
clearWallpaper +
Link copied to clipboard
+
+
+
+ +
+
open override fun clearWallpaper()
+
+
+
+
+
+
+ +
+
+
closeContextMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun closeContextMenu()
+
+
+
+
+
+
+ +
+
+
closeOptionsMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun closeOptionsMenu()
+
+
+
+
+
+
+ +
+
+
createAttributionContext +
Link copied to clipboard
+
+
+
+ +
+
open override fun createAttributionContext(p0: String?): Context
+
+
+
+
+
+
+ +
+
+
createConfigurationContext +
Link copied to clipboard
+
+
+
+ +
+
open override fun createConfigurationContext(p0: Configuration): Context
+
+
+
+
+
+
+ +
+
+
createContextForSplit +
Link copied to clipboard
+
+
+
+ +
+
open override fun createContextForSplit(p0: String): Context
+
+
+
+
+
+
+ +
+
+
createDeviceProtectedStorageContext +
Link copied to clipboard
+
+
+
+ +
+
open override fun createDeviceProtectedStorageContext(): Context
+
+
+
+
+
+
+ +
+
+
createDisplayContext +
Link copied to clipboard
+
+
+
+ +
+
open override fun createDisplayContext(p0: Display): Context
+
+
+
+
+
+
+ +
+
+
createPackageContext +
Link copied to clipboard
+
+
+
+ +
+
open override fun createPackageContext(p0: String, p1: Int): Context
+
+
+
+
+
+
+ +
+
+
createPendingResult +
Link copied to clipboard
+
+
+
+ +
+
open fun createPendingResult(p0: Int, p1: Intent, p2: Int): PendingIntent
+
+
+
+
+
+
+ +
+
+
createWindowContext +
Link copied to clipboard
+
+
+
+ +
+
open override fun createWindowContext(p0: Int, p1: Bundle?): Context
+
+
+
+
+
+
+ +
+
+
databaseList +
Link copied to clipboard
+
+
+
+ +
+
open override fun databaseList(): Array<String>
+
+
+
+
+
+
+ +
+
+
deleteDatabase +
Link copied to clipboard
+
+
+
+ +
+
open override fun deleteDatabase(p0: String): Boolean
+
+
+
+
+
+
+ +
+
+
deleteFile +
Link copied to clipboard
+
+
+
+ +
+
open override fun deleteFile(p0: String): Boolean
+
+
+
+
+
+
+ +
+
+
deleteSharedPreferences +
Link copied to clipboard
+
+
+
+ +
+
open override fun deleteSharedPreferences(p0: String): Boolean
+
+
+
+
+
+
+ +
+
+
dismissDialog +
Link copied to clipboard
+
+
+
+ +
+
fun dismissDialog(p0: Int)
+
+
+
+
+
+
+ +
+
+
dismissKeyboardShortcutsHelper +
Link copied to clipboard
+
+
+
+ +
+
fun dismissKeyboardShortcutsHelper()
+
+
+
+
+
+
+ +
+
+
dispatchGenericMotionEvent +
Link copied to clipboard
+
+
+
+ +
+
open override fun dispatchGenericMotionEvent(p0: MotionEvent): Boolean
+
+
+
+
+
+
+ +
+
+
dispatchKeyEvent +
Link copied to clipboard
+
+
+
+ +
+
open override fun dispatchKeyEvent(p0: KeyEvent): Boolean
+
+
+
+
+
+
+ +
+
+
dispatchKeyShortcutEvent +
Link copied to clipboard
+
+
+
+ +
+
open override fun dispatchKeyShortcutEvent(p0: KeyEvent): Boolean
+
+
+
+
+
+
+ +
+
+
dispatchPopulateAccessibilityEvent +
Link copied to clipboard
+
+
+
+ +
+
open override fun dispatchPopulateAccessibilityEvent(p0: AccessibilityEvent): Boolean
+
+
+
+
+
+
+ +
+
+
dispatchTouchEvent +
Link copied to clipboard
+
+
+
+ +
+
open override fun dispatchTouchEvent(p0: MotionEvent): Boolean
+
+
+
+
+
+
+ +
+
+
dispatchTrackballEvent +
Link copied to clipboard
+
+
+
+ +
+
open override fun dispatchTrackballEvent(p0: MotionEvent): Boolean
+
+
+
+
+
+
+ +
+
+
dump +
Link copied to clipboard
+
+
+
+ +
+
open fun dump(p0: String, p1: FileDescriptor?, p2: PrintWriter, p3: Array<String>?)
+
+
+
+
+
+
+ +
+
+
enforceCallingOrSelfPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun enforceCallingOrSelfPermission(p0: String, p1: String?)
+
+
+
+
+
+
+ +
+
+
enforceCallingOrSelfUriPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun enforceCallingOrSelfUriPermission(p0: Uri, p1: Int, p2: String)
+
+
+
+
+
+
+ +
+
+
enforceCallingPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun enforceCallingPermission(p0: String, p1: String?)
+
+
+
+
+
+
+ +
+
+
enforceCallingUriPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun enforceCallingUriPermission(p0: Uri, p1: Int, p2: String)
+
+
+
+
+
+
+ +
+
+
enforcePermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun enforcePermission(p0: String, p1: Int, p2: Int, p3: String?)
+
+
+
+
+
+
+ +
+
+
enforceUriPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun enforceUriPermission(p0: Uri, p1: Int, p2: Int, p3: Int, p4: String)
open override fun enforceUriPermission(p0: Uri?, p1: String?, p2: String?, p3: Int, p4: Int, p5: Int, p6: String?)
+
+
+
+
+
+
+ +
+
+
enterPictureInPictureMode +
Link copied to clipboard
+
+
+
+ +
+
open fun enterPictureInPictureMode()
open fun enterPictureInPictureMode(p0: PictureInPictureParams): Boolean
+
+
+
+
+
+
+ +
+
+
fileList +
Link copied to clipboard
+
+
+
+ +
+
open override fun fileList(): Array<String>
+
+
+
+
+
+
+ +
+
+
findViewById +
Link copied to clipboard
+
+
+
+ +
+
open fun <T : View> findViewById(p0: Int): T
+
+
+
+
+
+
+ +
+
+
finish +
Link copied to clipboard
+
+
+
+ +
+
open fun finish()
+
+
+
+
+
+
+ +
+
+
finishActivity +
Link copied to clipboard
+
+
+
+ +
+
open fun finishActivity(p0: Int)
+
+
+
+
+
+
+ +
+
+
finishActivityFromChild +
Link copied to clipboard
+
+
+
+ +
+
open fun finishActivityFromChild(p0: Activity, p1: Int)
+
+
+
+
+
+
+ +
+
+
finishAffinity +
Link copied to clipboard
+
+
+
+ +
+
open fun finishAffinity()
+
+
+
+
+
+
+ +
+
+
finishAfterTransition +
Link copied to clipboard
+
+
+
+ +
+
open fun finishAfterTransition()
+
+
+
+
+
+
+ +
+
+
finishAndRemoveTask +
Link copied to clipboard
+
+
+
+ +
+
open fun finishAndRemoveTask()
+
+
+
+
+
+
+ +
+
+
finishFromChild +
Link copied to clipboard
+
+
+
+ +
+
open fun finishFromChild(p0: Activity)
+
+
+
+
+
+
+ +
+
+
getActionBar +
Link copied to clipboard
+
+
+
+ +
+
open fun getActionBar(): ActionBar?
+
+
+
+
+
+
+ +
+
+
getApplication +
Link copied to clipboard
+
+
+
+ +
+
fun getApplication(): Application
+
+
+
+
+
+
+ +
+
+
getApplicationContext +
Link copied to clipboard
+
+
+
+ +
+
open override fun getApplicationContext(): Context
+
+
+
+
+
+
+ +
+
+
getApplicationInfo +
Link copied to clipboard
+
+
+
+ +
+
open override fun getApplicationInfo(): ApplicationInfo
+
+
+
+
+
+
+ +
+
+
getAssets +
Link copied to clipboard
+
+
+
+ +
+
open override fun getAssets(): AssetManager
+
+
+
+
+
+
+ +
+
+
getAttributionTag +
Link copied to clipboard
+
+
+
+ +
+
open override fun getAttributionTag(): String?
+
+
+
+
+
+
+ +
+
+
getBaseContext +
Link copied to clipboard
+
+
+
+ +
+
open fun getBaseContext(): Context
+
+
+
+
+
+
+ +
+
+
getCacheDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getCacheDir(): File
+
+
+
+
+
+
+ +
+
+
getCallingActivity +
Link copied to clipboard
+
+
+
+ +
+
open fun getCallingActivity(): ComponentName?
+
+
+
+
+
+
+ +
+
+
getCallingPackage +
Link copied to clipboard
+
+
+
+ +
+
open fun getCallingPackage(): String?
+
+
+
+
+
+
+ +
+
+
getChangingConfigurations +
Link copied to clipboard
+
+
+
+ +
+
open fun getChangingConfigurations(): Int
+
+
+
+
+
+
+ +
+
+
getClassLoader +
Link copied to clipboard
+
+
+
+ +
+
open override fun getClassLoader(): ClassLoader
+
+
+
+
+
+
+ +
+
+
getCodeCacheDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getCodeCacheDir(): File
+
+
+
+
+
+
+ +
+
+
getColor +
Link copied to clipboard
+
+
+
+ +
+
fun getColor(p0: Int): Int
+
+
+
+
+
+
+ +
+
+
getColorStateList +
Link copied to clipboard
+
+
+
+ +
+
fun getColorStateList(p0: Int): ColorStateList
+
+
+
+
+
+
+ +
+
+
getComponentName +
Link copied to clipboard
+
+
+
+ +
+
open fun getComponentName(): ComponentName
+
+
+
+
+
+
+ +
+
+
getContentResolver +
Link copied to clipboard
+
+
+
+ +
+
open override fun getContentResolver(): ContentResolver
+
+
+
+
+
+
+ +
+
+
getContentScene +
Link copied to clipboard
+
+
+
+ +
+
open fun getContentScene(): Scene
+
+
+
+
+
+
+ +
+
+
getContentTransitionManager +
Link copied to clipboard
+
+
+
+ +
+
open fun getContentTransitionManager(): TransitionManager
+
+
+
+
+
+
+ +
+
+
getCurrentFocus +
Link copied to clipboard
+
+
+
+ +
+
open fun getCurrentFocus(): View?
+
+
+
+
+
+
+ +
+
+
getDatabasePath +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDatabasePath(p0: String): File
+
+
+
+
+
+
+ +
+
+
getDataDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDataDir(): File
+
+
+
+
+
+
+ +
+
+
getDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDir(p0: String, p1: Int): File
+
+
+
+
+
+
+ +
+
+
getDisplay +
Link copied to clipboard
+
+
+
+ +
+
open override fun getDisplay(): Display?
+
+
+
+
+
+
+ +
+
+
getDrawable +
Link copied to clipboard
+
+
+
+ +
+
fun getDrawable(p0: Int): Drawable?
+
+
+
+
+
+
+ +
+
+
getExternalCacheDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getExternalCacheDir(): File?
+
+
+
+
+
+
+ +
+
+
getExternalCacheDirs +
Link copied to clipboard
+
+
+
+ +
+
open override fun getExternalCacheDirs(): Array<File>
+
+
+
+
+
+
+ +
+
+
getExternalFilesDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getExternalFilesDir(p0: String?): File?
+
+
+
+
+
+
+ +
+
+
getExternalFilesDirs +
Link copied to clipboard
+
+
+
+ +
+
open override fun getExternalFilesDirs(p0: String): Array<File>
+
+
+
+
+
+
+ +
+
+
getExternalMediaDirs +
Link copied to clipboard
+
+
+
+ +
+
open override fun getExternalMediaDirs(): Array<File>
+
+
+
+
+
+
+ +
+
+
getFilesDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getFilesDir(): File
+
+
+
+
+
+
+ +
+
+
getFileStreamPath +
Link copied to clipboard
+
+
+
+ +
+
open override fun getFileStreamPath(p0: String): File
+
+
+
+
+
+
+ +
+
+
getFragmentManager +
Link copied to clipboard
+
+
+
+ +
+
open fun getFragmentManager(): FragmentManager
+
+
+
+
+
+
+ +
+
+
getIntent +
Link copied to clipboard
+
+
+
+ +
+
open fun getIntent(): Intent
+
+
+
+
+
+
+ +
+
+
getLastNonConfigurationInstance +
Link copied to clipboard
+
+
+
+ +
+
open fun getLastNonConfigurationInstance(): Any?
+
+
+
+
+
+
+ +
+
+
getLayoutInflater +
Link copied to clipboard
+
+
+
+ +
+
open fun getLayoutInflater(): LayoutInflater
+
+
+
+
+
+
+ +
+
+
getLoaderManager +
Link copied to clipboard
+
+
+
+ +
+
open fun getLoaderManager(): LoaderManager
+
+
+
+
+
+
+ +
+
+
getLocalClassName +
Link copied to clipboard
+
+
+
+ +
+
open fun getLocalClassName(): String
+
+
+
+
+
+
+ +
+
+
getMainExecutor +
Link copied to clipboard
+
+
+
+ +
+
open override fun getMainExecutor(): Executor
+
+
+
+
+
+
+ +
+
+
getMainLooper +
Link copied to clipboard
+
+
+
+ +
+
open override fun getMainLooper(): Looper
+
+
+
+
+
+
+ +
+
+
getMaxNumPictureInPictureActions +
Link copied to clipboard
+
+
+
+ +
+
open fun getMaxNumPictureInPictureActions(): Int
+
+
+
+
+
+
+ +
+
+
getMediaController +
Link copied to clipboard
+
+
+
+ +
+
fun getMediaController(): MediaController
+
+
+
+
+
+
+ +
+
+
getMenuInflater +
Link copied to clipboard
+
+
+
+ +
+
open fun getMenuInflater(): MenuInflater
+
+
+
+
+
+
+ +
+
+
getNoBackupFilesDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getNoBackupFilesDir(): File
+
+
+
+
+
+
+ +
+
+
getObbDir +
Link copied to clipboard
+
+
+
+ +
+
open override fun getObbDir(): File
+
+
+
+
+
+
+ +
+
+
getObbDirs +
Link copied to clipboard
+
+
+
+ +
+
open override fun getObbDirs(): Array<File>
+
+
+
+
+
+
+ +
+
+
getOpPackageName +
Link copied to clipboard
+
+
+
+ +
+
open override fun getOpPackageName(): String
+
+
+
+
+
+
+ +
+
+
getPackageCodePath +
Link copied to clipboard
+
+
+
+ +
+
open override fun getPackageCodePath(): String
+
+
+
+
+
+
+ +
+
+
getPackageManager +
Link copied to clipboard
+
+
+
+ +
+
open override fun getPackageManager(): PackageManager
+
+
+
+
+
+
+ +
+
+
getPackageName +
Link copied to clipboard
+
+
+
+ +
+
open override fun getPackageName(): String
+
+
+
+
+
+
+ +
+
+
getPackageResourcePath +
Link copied to clipboard
+
+
+
+ +
+
open override fun getPackageResourcePath(): String
+
+
+
+
+
+
+ +
+
+
getParent +
Link copied to clipboard
+
+
+
+ +
+
fun getParent(): Activity
+
+
+
+
+
+
+ +
+
+
getParentActivityIntent +
Link copied to clipboard
+
+
+
+ +
+
open fun getParentActivityIntent(): Intent?
+
+
+
+
+
+
+ +
+
+
getPreferences +
Link copied to clipboard
+
+
+
+ +
+
open fun getPreferences(p0: Int): SharedPreferences
+
+
+
+
+
+
+ +
+
+
getReferrer +
Link copied to clipboard
+
+
+
+ +
+
open fun getReferrer(): Uri?
+
+
+
+
+
+
+ +
+
+
getRequestedOrientation +
Link copied to clipboard
+
+
+
+ +
+
open fun getRequestedOrientation(): Int
+
+
+
+
+
+
+ +
+
+
getResources +
Link copied to clipboard
+
+
+
+ +
+
open override fun getResources(): Resources
+
+
+
+
+
+
+ +
+
+
getSearchEvent +
Link copied to clipboard
+
+
+
+ +
+
fun getSearchEvent(): SearchEvent
+
+
+
+
+
+
+ +
+
+
getSharedPreferences +
Link copied to clipboard
+
+
+
+ +
+
open override fun getSharedPreferences(p0: String, p1: Int): SharedPreferences
+
+
+
+
+
+
+ +
+
+
getString +
Link copied to clipboard
+
+
+
+ +
+
fun getString(p0: Int): String
fun getString(p0: Int, vararg p1: Any): String
+
+
+
+
+
+
+ +
+
+
getSystemService +
Link copied to clipboard
+
+
+
+ +
+
open override fun getSystemService(p0: String): Any
fun <T : Any> getSystemService(p0: Class<T>): T
+
+
+
+
+
+
+ +
+
+
getSystemServiceName +
Link copied to clipboard
+
+
+
+ +
+
open override fun getSystemServiceName(p0: Class<*>): String?
+
+
+
+
+
+
+ +
+
+
getTaskId +
Link copied to clipboard
+
+
+
+ +
+
open fun getTaskId(): Int
+
+
+
+
+
+
+ +
+
+
getText +
Link copied to clipboard
+
+
+
+ +
+
fun getText(p0: Int): CharSequence
+
+
+
+
+
+
+ +
+
+
getTheme +
Link copied to clipboard
+
+
+
+ +
+
open override fun getTheme(): Resources.Theme
+
+
+
+
+
+
+ +
+
+
getTitle +
Link copied to clipboard
+
+
+
+ +
+
fun getTitle(): CharSequence
+
+
+
+
+
+
+ +
+
+
getTitleColor +
Link copied to clipboard
+
+
+
+ +
+
fun getTitleColor(): Int
+
+
+
+
+
+
+ +
+
+
getVoiceInteractor +
Link copied to clipboard
+
+
+
+ +
+
open fun getVoiceInteractor(): VoiceInteractor
+
+
+
+
+
+
+ +
+
+
getVolumeControlStream +
Link copied to clipboard
+
+
+
+ +
+
fun getVolumeControlStream(): Int
+
+
+
+
+
+
+ +
+
+
getWallpaper +
Link copied to clipboard
+
+
+
+ +
+
open override fun getWallpaper(): Drawable
+
+
+
+
+
+
+ +
+
+
getWallpaperDesiredMinimumHeight +
Link copied to clipboard
+
+
+
+ +
+
open override fun getWallpaperDesiredMinimumHeight(): Int
+
+
+
+
+
+
+ +
+
+
getWallpaperDesiredMinimumWidth +
Link copied to clipboard
+
+
+
+ +
+
open override fun getWallpaperDesiredMinimumWidth(): Int
+
+
+
+
+
+
+ +
+
+
getWindow +
Link copied to clipboard
+
+
+
+ +
+
open fun getWindow(): Window
+
+
+
+
+
+
+ +
+
+
getWindowManager +
Link copied to clipboard
+
+
+
+ +
+
open fun getWindowManager(): WindowManager
+
+
+
+
+
+
+ +
+
+
grantUriPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun grantUriPermission(p0: String, p1: Uri, p2: Int)
+
+
+
+
+
+
+ +
+
+
hasWindowFocus +
Link copied to clipboard
+
+
+
+ +
+
open fun hasWindowFocus(): Boolean
+
+
+
+
+
+
+ +
+
+
invalidateOptionsMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun invalidateOptionsMenu()
+
+
+
+
+
+
+ +
+
+
isActivityTransitionRunning +
Link copied to clipboard
+
+
+
+ +
+
open fun isActivityTransitionRunning(): Boolean
+
+
+
+
+
+
+ +
+
+
isChangingConfigurations +
Link copied to clipboard
+
+
+
+ +
+
open fun isChangingConfigurations(): Boolean
+
+
+
+
+
+
+ +
+
+
isChild +
Link copied to clipboard
+
+
+
+ +
+
fun isChild(): Boolean
+
+
+
+
+
+
+ +
+
+
isDestroyed +
Link copied to clipboard
+
+
+
+ +
+
open fun isDestroyed(): Boolean
+
+
+
+
+
+
+ +
+
+
isDeviceProtectedStorage +
Link copied to clipboard
+
+
+
+ +
+
open override fun isDeviceProtectedStorage(): Boolean
+
+
+
+
+
+
+ +
+
+
isFinishing +
Link copied to clipboard
+
+
+
+ +
+
open fun isFinishing(): Boolean
+
+
+
+
+
+
+ +
+
+
isImmersive +
Link copied to clipboard
+
+
+
+ +
+
open fun isImmersive(): Boolean
+
+
+
+
+
+
+ +
+
+
isInMultiWindowMode +
Link copied to clipboard
+
+
+
+ +
+
open fun isInMultiWindowMode(): Boolean
+
+
+
+
+
+
+ +
+
+
isInPictureInPictureMode +
Link copied to clipboard
+
+
+
+ +
+
open fun isInPictureInPictureMode(): Boolean
+
+
+
+
+
+
+ +
+
+
isLocalVoiceInteractionSupported +
Link copied to clipboard
+
+
+
+ +
+
open fun isLocalVoiceInteractionSupported(): Boolean
+
+
+
+
+
+
+ +
+
+
isRestricted +
Link copied to clipboard
+
+
+
+ +
+
open override fun isRestricted(): Boolean
+
+
+
+
+
+
+ +
+
+
isTaskRoot +
Link copied to clipboard
+
+
+
+ +
+
open fun isTaskRoot(): Boolean
+
+
+
+
+
+
+ +
+
+
isVoiceInteraction +
Link copied to clipboard
+
+
+
+ +
+
open fun isVoiceInteraction(): Boolean
+
+
+
+
+
+
+ +
+
+
isVoiceInteractionRoot +
Link copied to clipboard
+
+
+
+ +
+
open fun isVoiceInteractionRoot(): Boolean
+
+
+
+
+
+
+ +
+
+
managedQuery +
Link copied to clipboard
+
+
+
+ +
+
fun managedQuery(p0: Uri, p1: Array<String>, p2: String, p3: Array<String>, p4: String): Cursor
+
+
+
+
+
+
+ +
+
+
moveDatabaseFrom +
Link copied to clipboard
+
+
+
+ +
+
open override fun moveDatabaseFrom(p0: Context, p1: String): Boolean
+
+
+
+
+
+
+ +
+
+
moveSharedPreferencesFrom +
Link copied to clipboard
+
+
+
+ +
+
open override fun moveSharedPreferencesFrom(p0: Context, p1: String): Boolean
+
+
+
+
+
+
+ +
+
+
moveTaskToBack +
Link copied to clipboard
+
+
+
+ +
+
open fun moveTaskToBack(p0: Boolean): Boolean
+
+
+
+
+
+
+ +
+
+
navigateUpTo +
Link copied to clipboard
+
+
+
+ +
+
open fun navigateUpTo(p0: Intent): Boolean
+
+
+
+
+
+
+ +
+
+
navigateUpToFromChild +
Link copied to clipboard
+
+
+
+ +
+
open fun navigateUpToFromChild(p0: Activity, p1: Intent): Boolean
+
+
+
+
+
+
+ +
+
+
obtainStyledAttributes +
Link copied to clipboard
+
+
+
+ +
+
fun obtainStyledAttributes(p0: IntArray): TypedArray
fun obtainStyledAttributes(p0: AttributeSet?, p1: IntArray): TypedArray
fun obtainStyledAttributes(p0: Int, p1: IntArray): TypedArray
fun obtainStyledAttributes(p0: AttributeSet?, p1: IntArray, p2: Int, p3: Int): TypedArray
+
+
+
+
+
+
+ +
+
+
onActionModeFinished +
Link copied to clipboard
+
+
+
+ +
+
open override fun onActionModeFinished(p0: ActionMode)
+
+
+
+
+
+
+ +
+
+
onActionModeStarted +
Link copied to clipboard
+
+
+
+ +
+
open override fun onActionModeStarted(p0: ActionMode)
+
+
+
+
+
+
+ +
+
+
onActivityReenter +
Link copied to clipboard
+
+
+
+ +
+
open fun onActivityReenter(p0: Int, p1: Intent)
+
+
+
+
+
+
+ +
+
+
onActivityResult +
Link copied to clipboard
+
+
+
+ +
+
open fun onActivityResult(p0: Int, p1: Int, p2: Intent)
+
+
+
+
+
+
+ +
+
+
onApplyThemeResource +
Link copied to clipboard
+
+
+
+ +
+
open override fun onApplyThemeResource(p0: Resources.Theme, p1: Int, p2: Boolean)
+
+
+
+
+
+
+ +
+
+
onAttachedToWindow +
Link copied to clipboard
+
+
+
+ +
+
open override fun onAttachedToWindow()
+
+
+
+
+
+
+ +
+
+
onAttachFragment +
Link copied to clipboard
+
+
+
+ +
+
open fun onAttachFragment(p0: Fragment)
+
+
+
+
+
+
+ +
+
+
onBackPressed +
Link copied to clipboard
+
+
+
+ +
+
open fun onBackPressed()
+
+
+
+
+
+
+ +
+
+
onChildTitleChanged +
Link copied to clipboard
+
+
+
+ +
+
open fun onChildTitleChanged(p0: Activity, p1: CharSequence)
+
+
+
+
+
+
+ +
+
+
onConfigurationChanged +
Link copied to clipboard
+
+
+
+ +
+
open override fun onConfigurationChanged(p0: Configuration)
+
+
+
+
+
+
+ +
+
+
onContentChanged +
Link copied to clipboard
+
+
+
+ +
+
open override fun onContentChanged()
+
+
+
+
+
+
+ +
+
+
onContextItemSelected +
Link copied to clipboard
+
+
+
+ +
+
open fun onContextItemSelected(p0: MenuItem): Boolean
+
+
+
+
+
+
+ +
+
+
onContextMenuClosed +
Link copied to clipboard
+
+
+
+ +
+
open fun onContextMenuClosed(p0: Menu)
+
+
+
+
+
+
+ +
+
+
onCreate +
Link copied to clipboard
+
+
+
+ +
+
open fun onCreate(p0: Bundle?, p1: PersistableBundle?)
+
+
+
+
+
+
+ +
+
+
onCreateContextMenu +
Link copied to clipboard
+
+
+
+ +
+
open override fun onCreateContextMenu(p0: ContextMenu, p1: View, p2: ContextMenu.ContextMenuInfo)
+
+
+
+
+
+
+ +
+
+
onCreateDescription +
Link copied to clipboard
+
+
+
+ +
+
open fun onCreateDescription(): CharSequence?
+
+
+
+
+
+
+ +
+
+
onCreateDialog +
Link copied to clipboard
+
+
+
+ +
+
open fun onCreateDialog(p0: Int): Dialog
open fun onCreateDialog(p0: Int, p1: Bundle): Dialog?
+
+
+
+
+
+
+ +
+
+
onCreateNavigateUpTaskStack +
Link copied to clipboard
+
+
+
+ +
+
open fun onCreateNavigateUpTaskStack(p0: TaskStackBuilder)
+
+
+
+
+
+
+ +
+
+
onCreateOptionsMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun onCreateOptionsMenu(p0: Menu): Boolean
+
+
+
+
+
+
+ +
+
+
onCreatePanelMenu +
Link copied to clipboard
+
+
+
+ +
+
open override fun onCreatePanelMenu(p0: Int, p1: Menu): Boolean
+
+
+
+
+
+
+ +
+
+
onCreatePanelView +
Link copied to clipboard
+
+
+
+ +
+
open override fun onCreatePanelView(p0: Int): View?
+
+
+
+
+
+
+ +
+
+
onCreateThumbnail +
Link copied to clipboard
+
+
+
+ +
+
open fun onCreateThumbnail(p0: Bitmap, p1: Canvas): Boolean
+
+
+
+
+
+
+ +
+
+
onCreateView +
Link copied to clipboard
+
+
+
+ +
+
open override fun onCreateView(p0: String, p1: Context, p2: AttributeSet): View?
open override fun onCreateView(p0: View?, p1: String, p2: Context, p3: AttributeSet): View?
+
+
+
+
+
+
+ +
+
+
onDestroy +
Link copied to clipboard
+
+
+
+ +
+
open fun onDestroy()
+
+
+
+
+
+
+ +
+
+
onDetachedFromWindow +
Link copied to clipboard
+
+
+
+ +
+
open override fun onDetachedFromWindow()
+
+
+
+
+
+
+ +
+
+
onEnterAnimationComplete +
Link copied to clipboard
+
+
+
+ +
+
open fun onEnterAnimationComplete()
+
+
+
+
+
+
+ +
+
+
onGenericMotionEvent +
Link copied to clipboard
+
+
+
+ +
+
open fun onGenericMotionEvent(p0: MotionEvent): Boolean
+
+
+
+
+
+
+ +
+
+
onGetDirectActions +
Link copied to clipboard
+
+
+
+ +
+
open fun onGetDirectActions(p0: CancellationSignal, p1: Consumer<MutableList<DirectAction>>)
+
+
+
+
+
+
+ +
+
+
onKeyDown +
Link copied to clipboard
+
+
+
+ +
+
open override fun onKeyDown(p0: Int, p1: KeyEvent): Boolean
+
+
+
+
+
+
+ +
+
+
onKeyLongPress +
Link copied to clipboard
+
+
+
+ +
+
open override fun onKeyLongPress(p0: Int, p1: KeyEvent): Boolean
+
+
+
+
+
+
+ +
+
+
onKeyMultiple +
Link copied to clipboard
+
+
+
+ +
+
open override fun onKeyMultiple(p0: Int, p1: Int, p2: KeyEvent): Boolean
+
+
+
+
+
+
+ +
+
+
onKeyShortcut +
Link copied to clipboard
+
+
+
+ +
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
+
+
+
+
+
+ +
+
+
onKeyUp +
Link copied to clipboard
+
+
+
+ +
+
open override fun onKeyUp(p0: Int, p1: KeyEvent): Boolean
+
+
+
+
+
+
+ +
+
+
onLocalVoiceInteractionStarted +
Link copied to clipboard
+
+
+
+ +
+
open fun onLocalVoiceInteractionStarted()
+
+
+
+
+
+
+ +
+
+
onLocalVoiceInteractionStopped +
Link copied to clipboard
+
+
+
+ +
+
open fun onLocalVoiceInteractionStopped()
+
+
+
+
+
+
+ +
+
+
onLowMemory +
Link copied to clipboard
+
+
+
+ +
+
open override fun onLowMemory()
+
+
+
+
+
+
+ +
+
+
onMenuItemSelected +
Link copied to clipboard
+
+
+
+ +
+
open override fun onMenuItemSelected(p0: Int, p1: MenuItem): Boolean
+
+
+
+
+
+
+ +
+
+
onMenuOpened +
Link copied to clipboard
+
+
+
+ +
+
open override fun onMenuOpened(p0: Int, p1: Menu): Boolean
+
+
+
+
+
+
+ +
+
+
onMultiWindowModeChanged +
Link copied to clipboard
+
+
+
+ +
+
open fun onMultiWindowModeChanged(p0: Boolean)
open fun onMultiWindowModeChanged(p0: Boolean, p1: Configuration)
+
+
+
+
+
+
+ +
+
+
onNavigateUp +
Link copied to clipboard
+
+
+
+ +
+
open fun onNavigateUp(): Boolean
+
+
+
+
+
+
+ +
+
+
onNavigateUpFromChild +
Link copied to clipboard
+
+
+
+ +
+
open fun onNavigateUpFromChild(p0: Activity): Boolean
+
+
+
+
+
+
+ +
+
+
onOptionsItemSelected +
Link copied to clipboard
+
+
+
+ +
+
open fun onOptionsItemSelected(p0: MenuItem): Boolean
+
+
+
+
+
+
+ +
+
+
onOptionsMenuClosed +
Link copied to clipboard
+
+
+
+ +
+
open fun onOptionsMenuClosed(p0: Menu)
+
+
+
+
+
+
+ +
+
+
onPanelClosed +
Link copied to clipboard
+
+
+
+ +
+
open override fun onPanelClosed(p0: Int, p1: Menu)
+
+
+
+
+
+
+ +
+
+
onPerformDirectAction +
Link copied to clipboard
+
+
+
+ +
+
open fun onPerformDirectAction(p0: String, p1: Bundle, p2: CancellationSignal, p3: Consumer<Bundle>)
+
+
+
+
+
+
+ +
+
+
onPictureInPictureModeChanged +
Link copied to clipboard
+
+
+
+ +
+
open fun onPictureInPictureModeChanged(p0: Boolean)
open fun onPictureInPictureModeChanged(p0: Boolean, p1: Configuration)
+
+
+
+
+
+
+ +
+
+
onPictureInPictureRequested +
Link copied to clipboard
+
+
+
+ +
+
open fun onPictureInPictureRequested(): Boolean
+
+
+
+
+
+
+ +
+
+
onPointerCaptureChanged +
Link copied to clipboard
+
+
+
+ +
+
open fun onPointerCaptureChanged(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
onPostCreate +
Link copied to clipboard
+
+
+
+ +
+
open fun onPostCreate(p0: Bundle?)
open fun onPostCreate(p0: Bundle?, p1: PersistableBundle?)
+
+
+
+
+
+
+ +
+
+
onPostResume +
Link copied to clipboard
+
+
+
+ +
+
open fun onPostResume()
+
+
+
+
+
+
+ +
+
+
onPrepareDialog +
Link copied to clipboard
+
+
+
+ +
+
open fun onPrepareDialog(p0: Int, p1: Dialog)
open fun onPrepareDialog(p0: Int, p1: Dialog, p2: Bundle)
+
+
+
+
+
+
+ +
+
+
onPrepareNavigateUpTaskStack +
Link copied to clipboard
+
+
+
+ +
+
open fun onPrepareNavigateUpTaskStack(p0: TaskStackBuilder)
+
+
+
+
+
+
+ +
+
+
onPrepareOptionsMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun onPrepareOptionsMenu(p0: Menu): Boolean
+
+
+
+
+
+
+ +
+
+
onPreparePanel +
Link copied to clipboard
+
+
+
+ +
+
open override fun onPreparePanel(p0: Int, p1: View?, p2: Menu): Boolean
+
+
+
+
+
+
+ +
+
+
onProvideAssistContent +
Link copied to clipboard
+
+
+
+ +
+
open fun onProvideAssistContent(p0: AssistContent)
+
+
+
+
+
+
+ +
+
+
onProvideAssistData +
Link copied to clipboard
+
+
+
+ +
+
open fun onProvideAssistData(p0: Bundle)
+
+
+
+
+
+
+ +
+
+
onProvideKeyboardShortcuts +
Link copied to clipboard
+
+
+
+ +
+
open override fun onProvideKeyboardShortcuts(p0: MutableList<KeyboardShortcutGroup>, p1: Menu?, p2: Int)
+
+
+
+
+
+
+ +
+
+
onProvideReferrer +
Link copied to clipboard
+
+
+
+ +
+
open fun onProvideReferrer(): Uri
+
+
+
+
+
+
+ +
+
+
onRequestPermissionsResult +
Link copied to clipboard
+
+
+
+ +
+
open fun onRequestPermissionsResult(p0: Int, p1: Array<String>, p2: IntArray)
+
+
+
+
+
+
+ +
+
+
onRestoreInstanceState +
Link copied to clipboard
+
+
+
+ +
+
open fun onRestoreInstanceState(p0: Bundle)
open fun onRestoreInstanceState(p0: Bundle?, p1: PersistableBundle?)
+
+
+
+
+
+
+ +
+
+
onRetainNonConfigurationInstance +
Link copied to clipboard
+
+
+
+ +
+
open fun onRetainNonConfigurationInstance(): Any
+
+
+
+
+
+
+ +
+
+
onSaveInstanceState +
Link copied to clipboard
+
+
+
+ +
+
open fun onSaveInstanceState(p0: Bundle, p1: PersistableBundle)
+
+
+
+
+
+
+ +
+
+
onSearchRequested +
Link copied to clipboard
+
+
+
+ +
+
open override fun onSearchRequested(): Boolean
open override fun onSearchRequested(p0: SearchEvent?): Boolean
+
+
+
+
+
+
+ +
+
+
onStart +
Link copied to clipboard
+
+
+
+ +
+
open fun onStart()
+
+
+
+
+
+
+ +
+
+
onStateNotSaved +
Link copied to clipboard
+
+
+
+ +
+
open fun onStateNotSaved()
+
+
+
+
+
+
+ +
+
+
onStop +
Link copied to clipboard
+
+
+
+ +
+
open fun onStop()
+
+
+
+
+
+
+ +
+
+
onTitleChanged +
Link copied to clipboard
+
+
+
+ +
+
open fun onTitleChanged(p0: CharSequence, p1: Int)
+
+
+
+
+
+
+ +
+
+
onTopResumedActivityChanged +
Link copied to clipboard
+
+
+
+ +
+
open fun onTopResumedActivityChanged(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
onTouchEvent +
Link copied to clipboard
+
+
+
+ +
+
open fun onTouchEvent(p0: MotionEvent): Boolean
+
+
+
+
+
+
+ +
+
+
onTrackballEvent +
Link copied to clipboard
+
+
+
+ +
+
open fun onTrackballEvent(p0: MotionEvent): Boolean
+
+
+
+
+
+
+ +
+
+
onTrimMemory +
Link copied to clipboard
+
+
+
+ +
+
open override fun onTrimMemory(p0: Int)
+
+
+
+
+
+
+ +
+
+
onUserInteraction +
Link copied to clipboard
+
+
+
+ +
+
open fun onUserInteraction()
+
+
+
+
+
+
+ +
+
+
onUserLeaveHint +
Link copied to clipboard
+
+
+
+ +
+
open fun onUserLeaveHint()
+
+
+
+
+
+
+ +
+
+
onVisibleBehindCanceled +
Link copied to clipboard
+
+
+
+ +
+
open fun onVisibleBehindCanceled()
+
+
+
+
+
+
+ +
+
+
onWindowAttributesChanged +
Link copied to clipboard
+
+
+
+ +
+
open override fun onWindowAttributesChanged(p0: WindowManager.LayoutParams)
+
+
+
+
+
+
+ +
+
+
onWindowFocusChanged +
Link copied to clipboard
+
+
+
+ +
+
open override fun onWindowFocusChanged(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
onWindowStartingActionMode +
Link copied to clipboard
+
+
+
+ +
+
open override fun onWindowStartingActionMode(p0: ActionMode.Callback): ActionMode?
open override fun onWindowStartingActionMode(p0: ActionMode.Callback, p1: Int): ActionMode?
+
+
+
+
+
+
+ +
+
+
openContextMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun openContextMenu(p0: View)
+
+
+
+
+
+
+ +
+
+
openFileInput +
Link copied to clipboard
+
+
+
+ +
+
open override fun openFileInput(p0: String): FileInputStream
+
+
+
+
+
+
+ +
+
+
openFileOutput +
Link copied to clipboard
+
+
+
+ +
+
open override fun openFileOutput(p0: String, p1: Int): FileOutputStream
+
+
+
+
+
+
+ +
+
+
openOptionsMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun openOptionsMenu()
+
+
+
+
+
+
+ +
+
+
openOrCreateDatabase +
Link copied to clipboard
+
+
+
+ +
+
open override fun openOrCreateDatabase(p0: String, p1: Int, p2: SQLiteDatabase.CursorFactory): SQLiteDatabase
open override fun openOrCreateDatabase(p0: String, p1: Int, p2: SQLiteDatabase.CursorFactory, p3: DatabaseErrorHandler?): SQLiteDatabase
+
+
+
+
+
+
+ +
+
+
overridePendingTransition +
Link copied to clipboard
+
+
+
+ +
+
open fun overridePendingTransition(p0: Int, p1: Int)
+
+
+
+
+
+
+ +
+
+
peekWallpaper +
Link copied to clipboard
+
+
+
+ +
+
open override fun peekWallpaper(): Drawable
+
+
+
+
+
+
+ +
+
+
postponeEnterTransition +
Link copied to clipboard
+
+
+
+ +
+
open fun postponeEnterTransition()
+
+
+
+
+
+
+ +
+
+
recreate +
Link copied to clipboard
+
+
+
+ +
+
open fun recreate()
+
+
+
+
+
+
+ +
+
+
registerActivityLifecycleCallbacks +
Link copied to clipboard
+
+
+
+ +
+ +
+
+
+
+
+
+ +
+
+
registerComponentCallbacks +
Link copied to clipboard
+
+
+
+ +
+
open fun registerComponentCallbacks(p0: ComponentCallbacks)
+
+
+
+
+
+
+ +
+
+
registerForContextMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun registerForContextMenu(p0: View)
+
+
+
+
+
+
+ +
+
+
registerReceiver +
Link copied to clipboard
+
+
+
+ +
+
open override fun registerReceiver(p0: BroadcastReceiver?, p1: IntentFilter): Intent?
open override fun registerReceiver(p0: BroadcastReceiver?, p1: IntentFilter, p2: Int): Intent?
open override fun registerReceiver(p0: BroadcastReceiver, p1: IntentFilter, p2: String?, p3: Handler?): Intent?
open override fun registerReceiver(p0: BroadcastReceiver, p1: IntentFilter, p2: String?, p3: Handler?, p4: Int): Intent?
+
+
+
+
+
+
+ +
+
+
releaseInstance +
Link copied to clipboard
+
+
+
+ +
+
open fun releaseInstance(): Boolean
+
+
+
+
+
+
+ +
+
+
removeDialog +
Link copied to clipboard
+
+
+
+ +
+
fun removeDialog(p0: Int)
+
+
+
+
+
+
+ +
+
+
removeStickyBroadcast +
Link copied to clipboard
+
+
+
+ +
+
open override fun removeStickyBroadcast(p0: Intent)
+
+
+
+
+
+
+ +
+
+
removeStickyBroadcastAsUser +
Link copied to clipboard
+
+
+
+ +
+
open override fun removeStickyBroadcastAsUser(p0: Intent, p1: UserHandle)
+
+
+
+
+
+
+ +
+
+
reportFullyDrawn +
Link copied to clipboard
+
+
+
+ +
+
open fun reportFullyDrawn()
+
+
+
+
+
+
+ +
+
+
requestDragAndDropPermissions +
Link copied to clipboard
+
+
+
+ +
+
open fun requestDragAndDropPermissions(p0: DragEvent): DragAndDropPermissions
+
+
+
+
+
+
+ +
+
+
requestPermissions +
Link copied to clipboard
+
+
+
+ +
+
fun requestPermissions(p0: Array<String>, p1: Int)
+
+
+
+
+
+
+ +
+
+
requestShowKeyboardShortcuts +
Link copied to clipboard
+
+
+
+ +
+
fun requestShowKeyboardShortcuts()
+
+
+
+
+
+
+ +
+
+
requestVisibleBehind +
Link copied to clipboard
+
+
+
+ +
+
open fun requestVisibleBehind(p0: Boolean): Boolean
+
+
+
+
+
+
+ +
+
+
requestWindowFeature +
Link copied to clipboard
+
+
+
+ +
+
fun requestWindowFeature(p0: Int): Boolean
+
+
+
+
+
+
+ +
+
+
requireViewById +
Link copied to clipboard
+
+
+
+ +
+
fun <T : View> requireViewById(p0: Int): T
+
+
+
+
+
+
+ +
+
+
revokeUriPermission +
Link copied to clipboard
+
+
+
+ +
+
open override fun revokeUriPermission(p0: Uri, p1: Int)
open override fun revokeUriPermission(p0: String, p1: Uri, p2: Int)
+
+
+
+
+
+
+ +
+
+
runOnUiThread +
Link copied to clipboard
+
+
+
+ +
+
fun runOnUiThread(p0: Runnable)
+
+
+
+
+
+
+ +
+
+
sendBroadcast +
Link copied to clipboard
+
+
+
+ +
+
open override fun sendBroadcast(p0: Intent)
open override fun sendBroadcast(p0: Intent, p1: String?)
+
+
+
+
+
+
+ +
+
+
sendBroadcastAsUser +
Link copied to clipboard
+
+
+
+ +
+
open override fun sendBroadcastAsUser(p0: Intent, p1: UserHandle)
open override fun sendBroadcastAsUser(p0: Intent, p1: UserHandle, p2: String?)
+
+
+
+
+
+
+ +
+
+
sendBroadcastWithMultiplePermissions +
Link copied to clipboard
+
+
+
+ +
+
open fun sendBroadcastWithMultiplePermissions(p0: Intent, p1: Array<String>)
+
+
+
+
+
+
+ +
+
+
sendOrderedBroadcast +
Link copied to clipboard
+
+
+
+ +
+
open override fun sendOrderedBroadcast(p0: Intent, p1: String?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: BroadcastReceiver?, p3: Handler?, p4: Int, p5: String?, p6: Bundle?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: String?, p3: BroadcastReceiver?, p4: Handler?, p5: Int, p6: String?, p7: Bundle?)
open fun sendOrderedBroadcast(p0: Intent, p1: Int, p2: String?, p3: String?, p4: BroadcastReceiver?, p5: Handler?, p6: String?, p7: Bundle?, p8: Bundle?)
+
+
+
+
+
+
+ +
+
+
sendOrderedBroadcastAsUser +
Link copied to clipboard
+
+
+
+ +
+
open override fun sendOrderedBroadcastAsUser(p0: Intent, p1: UserHandle, p2: String?, p3: BroadcastReceiver, p4: Handler?, p5: Int, p6: String?, p7: Bundle?)
+
+
+
+
+
+
+ +
+
+
sendStickyBroadcast +
Link copied to clipboard
+
+
+
+ +
+
open override fun sendStickyBroadcast(p0: Intent)
+
+
+
+
+
+
+ +
+
+
sendStickyBroadcastAsUser +
Link copied to clipboard
+
+
+
+ +
+
open override fun sendStickyBroadcastAsUser(p0: Intent, p1: UserHandle)
+
+
+
+
+
+
+ +
+
+
sendStickyOrderedBroadcast +
Link copied to clipboard
+
+
+
+ +
+
open override fun sendStickyOrderedBroadcast(p0: Intent, p1: BroadcastReceiver, p2: Handler?, p3: Int, p4: String?, p5: Bundle?)
+
+
+
+
+
+
+ +
+
+
sendStickyOrderedBroadcastAsUser +
Link copied to clipboard
+
+
+
+ +
+
open override fun sendStickyOrderedBroadcastAsUser(p0: Intent, p1: UserHandle, p2: BroadcastReceiver, p3: Handler?, p4: Int, p5: String?, p6: Bundle?)
+
+
+
+
+
+
+ +
+
+
setActionBar +
Link copied to clipboard
+
+
+
+ +
+
open fun setActionBar(p0: Toolbar?)
+
+
+
+
+
+
+ +
+
+
setContentTransitionManager +
Link copied to clipboard
+
+
+
+ +
+
open fun setContentTransitionManager(p0: TransitionManager)
+
+
+
+
+
+
+ +
+
+
setContentView +
Link copied to clipboard
+
+
+
+ +
+
open fun setContentView(p0: View)
open fun setContentView(p0: Int)
open fun setContentView(p0: View, p1: ViewGroup.LayoutParams)
+
+
+
+
+
+
+ +
+
+
setDefaultKeyMode +
Link copied to clipboard
+
+
+
+ +
+
fun setDefaultKeyMode(p0: Int)
+
+
+
+
+
+
+ +
+
+
setEnterSharedElementCallback +
Link copied to clipboard
+
+
+
+ +
+
open fun setEnterSharedElementCallback(p0: SharedElementCallback)
+
+
+
+
+
+
+ +
+
+
setExitSharedElementCallback +
Link copied to clipboard
+
+
+
+ +
+
open fun setExitSharedElementCallback(p0: SharedElementCallback)
+
+
+
+
+
+
+ +
+
+
setFeatureDrawable +
Link copied to clipboard
+
+
+
+ +
+
fun setFeatureDrawable(p0: Int, p1: Drawable)
+
+
+
+
+
+
+ +
+
+
setFeatureDrawableAlpha +
Link copied to clipboard
+
+
+
+ +
+
fun setFeatureDrawableAlpha(p0: Int, p1: Int)
+
+
+
+
+
+
+ +
+
+
setFeatureDrawableResource +
Link copied to clipboard
+
+
+
+ +
+
fun setFeatureDrawableResource(p0: Int, p1: Int)
+
+
+
+
+
+
+ +
+
+
setFeatureDrawableUri +
Link copied to clipboard
+
+
+
+ +
+
fun setFeatureDrawableUri(p0: Int, p1: Uri)
+
+
+
+
+
+
+ +
+
+
setFinishOnTouchOutside +
Link copied to clipboard
+
+
+
+ +
+
open fun setFinishOnTouchOutside(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setImmersive +
Link copied to clipboard
+
+
+
+ +
+
open fun setImmersive(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setInheritShowWhenLocked +
Link copied to clipboard
+
+
+
+ +
+
open fun setInheritShowWhenLocked(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setIntent +
Link copied to clipboard
+
+
+
+ +
+
open fun setIntent(p0: Intent)
+
+
+
+
+
+
+ +
+
+
setLocusContext +
Link copied to clipboard
+
+
+
+ +
+
open fun setLocusContext(p0: LocusId?, p1: Bundle?)
+
+
+
+
+
+
+ +
+
+
setMediaController +
Link copied to clipboard
+
+
+
+ +
+
fun setMediaController(p0: MediaController)
+
+
+
+
+
+
+ +
+
+
setPictureInPictureParams +
Link copied to clipboard
+
+
+
+ +
+
open fun setPictureInPictureParams(p0: PictureInPictureParams)
+
+
+
+
+
+
+ +
+
+
setProgress +
Link copied to clipboard
+
+
+
+ +
+
fun setProgress(p0: Int)
+
+
+
+
+
+
+ +
+
+
setProgressBarIndeterminate +
Link copied to clipboard
+
+
+
+ +
+
fun setProgressBarIndeterminate(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setProgressBarIndeterminateVisibility +
Link copied to clipboard
+
+
+
+ +
+
fun setProgressBarIndeterminateVisibility(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setProgressBarVisibility +
Link copied to clipboard
+
+
+
+ +
+
fun setProgressBarVisibility(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setRequestedOrientation +
Link copied to clipboard
+
+
+
+ +
+
open fun setRequestedOrientation(p0: Int)
+
+
+
+
+
+
+ +
+
+
setResult +
Link copied to clipboard
+
+
+
+ +
+
fun setResult(p0: Int)
fun setResult(p0: Int, p1: Intent)
+
+
+
+
+
+
+ +
+
+
setSecondaryProgress +
Link copied to clipboard
+
+
+
+ +
+
fun setSecondaryProgress(p0: Int)
+
+
+
+
+
+
+ +
+
+
setShowWhenLocked +
Link copied to clipboard
+
+
+
+ +
+
open fun setShowWhenLocked(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setTaskDescription +
Link copied to clipboard
+
+
+
+ +
+
open fun setTaskDescription(p0: ActivityManager.TaskDescription)
+
+
+
+
+
+
+ +
+
+
setTheme +
Link copied to clipboard
+
+
+
+ +
+
open override fun setTheme(p0: Int)
open fun setTheme(p0: Resources.Theme?)
+
+
+
+
+
+
+ +
+
+
setTitle +
Link copied to clipboard
+
+
+
+ +
+
open fun setTitle(p0: CharSequence)
open fun setTitle(p0: Int)
+
+
+
+
+
+
+ +
+
+
setTitleColor +
Link copied to clipboard
+
+
+
+ +
+
open fun setTitleColor(p0: Int)
+
+
+
+
+
+
+ +
+
+
setTranslucent +
Link copied to clipboard
+
+
+
+ +
+
open fun setTranslucent(p0: Boolean): Boolean
+
+
+
+
+
+
+ +
+
+
setTurnScreenOn +
Link copied to clipboard
+
+
+
+ +
+
open fun setTurnScreenOn(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setVisible +
Link copied to clipboard
+
+
+
+ +
+
open fun setVisible(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
setVolumeControlStream +
Link copied to clipboard
+
+
+
+ +
+
fun setVolumeControlStream(p0: Int)
+
+
+
+
+
+
+ +
+
+
setVrModeEnabled +
Link copied to clipboard
+
+
+
+ +
+
open fun setVrModeEnabled(p0: Boolean, p1: ComponentName)
+
+
+
+
+
+
+ +
+
+
setWallpaper +
Link copied to clipboard
+
+
+
+ +
+
open override fun setWallpaper(p0: Bitmap)
open override fun setWallpaper(p0: InputStream)
+
+
+
+
+
+
+ +
+
+
shouldShowRequestPermissionRationale +
Link copied to clipboard
+
+
+
+ +
+
open fun shouldShowRequestPermissionRationale(p0: String): Boolean
+
+
+
+
+
+
+ +
+
+
shouldUpRecreateTask +
Link copied to clipboard
+
+
+
+ +
+
open fun shouldUpRecreateTask(p0: Intent): Boolean
+
+
+
+
+
+
+ +
+
+
showAssist +
Link copied to clipboard
+
+
+
+ +
+
open fun showAssist(p0: Bundle): Boolean
+
+
+
+
+
+
+ +
+
+
showDialog +
Link copied to clipboard
+
+
+
+ +
+
fun showDialog(p0: Int)
fun showDialog(p0: Int, p1: Bundle): Boolean
+
+
+
+
+
+
+ +
+
+
showLockTaskEscapeMessage +
Link copied to clipboard
+
+
+
+ +
+
open fun showLockTaskEscapeMessage()
+
+
+
+
+
+
+ +
+
+
startActionMode +
Link copied to clipboard
+
+
+
+ +
+
open fun startActionMode(p0: ActionMode.Callback): ActionMode?
open fun startActionMode(p0: ActionMode.Callback, p1: Int): ActionMode?
+
+
+
+
+
+
+ +
+
+
startActivities +
Link copied to clipboard
+
+
+
+ +
+
open override fun startActivities(p0: Array<Intent>)
open override fun startActivities(p0: Array<Intent>, p1: Bundle)
+
+
+
+
+
+
+ +
+
+
startActivity +
Link copied to clipboard
+
+
+
+ +
+
open override fun startActivity(p0: Intent)
open override fun startActivity(p0: Intent, p1: Bundle?)
+
+
+
+
+
+
+ +
+
+
startActivityForResult +
Link copied to clipboard
+
+
+
+ +
+
open fun startActivityForResult(p0: Intent, p1: Int)
open fun startActivityForResult(p0: Intent, p1: Int, p2: Bundle?)
+
+
+
+
+
+
+ +
+
+
startActivityFromChild +
Link copied to clipboard
+
+
+
+ +
+
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int)
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int, p3: Bundle?)
+
+
+
+
+
+
+ +
+
+
startActivityFromFragment +
Link copied to clipboard
+
+
+
+ +
+
open fun startActivityFromFragment(p0: Fragment, p1: Intent, p2: Int)
open fun startActivityFromFragment(p0: Fragment, p1: Intent, p2: Int, p3: Bundle?)
+
+
+
+
+
+
+ +
+
+
startActivityIfNeeded +
Link copied to clipboard
+
+
+
+ +
+
open fun startActivityIfNeeded(p0: Intent, p1: Int): Boolean
open fun startActivityIfNeeded(p0: Intent, p1: Int, p2: Bundle?): Boolean
+
+
+
+
+
+
+ +
+
+
startForegroundService +
Link copied to clipboard
+
+
+
+ +
+
open override fun startForegroundService(p0: Intent): ComponentName?
+
+
+
+
+
+
+ +
+
+
startInstrumentation +
Link copied to clipboard
+
+
+
+ +
+
open override fun startInstrumentation(p0: ComponentName, p1: String?, p2: Bundle?): Boolean
+
+
+
+
+
+
+ +
+
+
startIntentSender +
Link copied to clipboard
+
+
+
+ +
+
open override fun startIntentSender(p0: IntentSender, p1: Intent?, p2: Int, p3: Int, p4: Int)
open override fun startIntentSender(p0: IntentSender, p1: Intent?, p2: Int, p3: Int, p4: Int, p5: Bundle?)
+
+
+
+
+
+
+ +
+
+
startIntentSenderForResult +
Link copied to clipboard
+
+
+
+ +
+
open fun startIntentSenderForResult(p0: IntentSender, p1: Int, p2: Intent?, p3: Int, p4: Int, p5: Int)
open fun startIntentSenderForResult(p0: IntentSender, p1: Int, p2: Intent?, p3: Int, p4: Int, p5: Int, p6: Bundle)
+
+
+
+
+
+
+ +
+
+
startIntentSenderFromChild +
Link copied to clipboard
+
+
+
+ +
+
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int)
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int, p7: Bundle?)
+
+
+
+
+
+
+ +
+
+
startLocalVoiceInteraction +
Link copied to clipboard
+
+
+
+ +
+
open fun startLocalVoiceInteraction(p0: Bundle)
+
+
+
+
+
+
+ +
+
+
startLockTask +
Link copied to clipboard
+
+
+
+ +
+
open fun startLockTask()
+
+
+
+
+
+
+ +
+
+
startManagingCursor +
Link copied to clipboard
+
+
+
+ +
+
open fun startManagingCursor(p0: Cursor)
+
+
+
+
+
+
+ +
+
+
startNextMatchingActivity +
Link copied to clipboard
+
+
+
+ +
+
open fun startNextMatchingActivity(p0: Intent): Boolean
open fun startNextMatchingActivity(p0: Intent, p1: Bundle?): Boolean
+
+
+
+
+
+
+ +
+
+
startPostponedEnterTransition +
Link copied to clipboard
+
+
+
+ +
+
open fun startPostponedEnterTransition()
+
+
+
+
+
+
+ +
+
+
startSearch +
Link copied to clipboard
+
+
+
+ +
+
open fun startSearch(p0: String?, p1: Boolean, p2: Bundle?, p3: Boolean)
+
+
+
+
+
+
+ +
+
+
startService +
Link copied to clipboard
+
+
+
+ +
+
open override fun startService(p0: Intent): ComponentName?
+
+
+
+
+
+
+ +
+
+
stopLocalVoiceInteraction +
Link copied to clipboard
+
+
+
+ +
+
open fun stopLocalVoiceInteraction()
+
+
+
+
+
+
+ +
+
+
stopLockTask +
Link copied to clipboard
+
+
+
+ +
+
open fun stopLockTask()
+
+
+
+
+
+
+ +
+
+
stopManagingCursor +
Link copied to clipboard
+
+
+
+ +
+
open fun stopManagingCursor(p0: Cursor)
+
+
+
+
+
+
+ +
+
+
stopService +
Link copied to clipboard
+
+
+
+ +
+
open override fun stopService(p0: Intent): Boolean
+
+
+
+
+
+
+ +
+
+
takeKeyEvents +
Link copied to clipboard
+
+
+
+ +
+
open fun takeKeyEvents(p0: Boolean)
+
+
+
+
+
+
+ +
+
+
triggerSearch +
Link copied to clipboard
+
+
+
+ +
+
open fun triggerSearch(p0: String, p1: Bundle?)
+
+
+
+
+
+
+ +
+
+
unbindService +
Link copied to clipboard
+
+
+
+ +
+
open override fun unbindService(p0: ServiceConnection)
+
+
+
+
+
+
+ +
+
+
unregisterActivityLifecycleCallbacks +
Link copied to clipboard
+
+
+
+ + +
+
+
+
+
+ +
+
+
unregisterComponentCallbacks +
Link copied to clipboard
+
+
+
+ +
+
open fun unregisterComponentCallbacks(p0: ComponentCallbacks)
+
+
+
+
+
+
+ +
+
+
unregisterForContextMenu +
Link copied to clipboard
+
+
+
+ +
+
open fun unregisterForContextMenu(p0: View)
+
+
+
+
+
+
+ +
+
+
unregisterReceiver +
Link copied to clipboard
+
+
+
+ +
+
open override fun unregisterReceiver(p0: BroadcastReceiver)
+
+
+
+
+
+
+ +
+
+
updateServiceGroup +
Link copied to clipboard
+
+
+
+ +
+
open override fun updateServiceGroup(p0: ServiceConnection, p1: Int, p2: Int)
+
+
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/ch.datatrans.payment/index.html b/docs/-datatrans -android -s-d-k/ch.datatrans.payment/index.html new file mode 100644 index 0000000..f87e669 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/ch.datatrans.payment/index.html @@ -0,0 +1,56 @@ + + + + ch.datatrans.payment + + +
+
+ + +
+
+
+
+
+
+ +
+

Package ch.datatrans.payment

+
+
+
+
+

Types

+
+
+
+
ExternalProcessRelayActivity +
Link copied to clipboard
+
+
+
+ +
+
class ExternalProcessRelayActivity : Activity
+
+
Activity that handles switches to other external processes such as Custom Tabs which are used for PayPal.
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/-datatrans -android -s-d-k/package-list b/docs/-datatrans -android -s-d-k/package-list new file mode 100644 index 0000000..c079ea4 --- /dev/null +++ b/docs/-datatrans -android -s-d-k/package-list @@ -0,0 +1,223 @@ +$dokka.format:html-v1 +$dokka.linkExtension:html +$dokka.location:ch.datatrans.payment.api////PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/index.html +$dokka.location:ch.datatrans.payment.api/Transaction///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/index.html +$dokka.location:ch.datatrans.payment.api/Transaction/Transaction/#kotlin.String#ch.datatrans.payment.paymentmethods.Card/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/-transaction.html +$dokka.location:ch.datatrans.payment.api/Transaction/Transaction/#kotlin.String#kotlin.collections.List[ch.datatrans.payment.paymentmethods.PaymentMethodToken]/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/-transaction.html +$dokka.location:ch.datatrans.payment.api/Transaction/Transaction/#kotlin.String/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/-transaction.html +$dokka.location:ch.datatrans.payment.api/Transaction/listener/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/listener.html +$dokka.location:ch.datatrans.payment.api/Transaction/options/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction/options.html +$dokka.location:ch.datatrans.payment.api/TransactionListener///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/index.html +$dokka.location:ch.datatrans.payment.api/TransactionListener/onTransactionCancel/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-cancel.html +$dokka.location:ch.datatrans.payment.api/TransactionListener/onTransactionError/#ch.datatrans.payment.exception.TransactionException/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-error.html +$dokka.location:ch.datatrans.payment.api/TransactionListener/onTransactionSuccess/#ch.datatrans.payment.api.TransactionSuccess/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-listener/on-transaction-success.html +$dokka.location:ch.datatrans.payment.api/TransactionOptions///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/index.html +$dokka.location:ch.datatrans.payment.api/TransactionOptions/TransactionOptions/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/-transaction-options.html +$dokka.location:ch.datatrans.payment.api/TransactionOptions/appCallbackScheme/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/app-callback-scheme.html +$dokka.location:ch.datatrans.payment.api/TransactionOptions/googlePayConfig/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/google-pay-config.html +$dokka.location:ch.datatrans.payment.api/TransactionOptions/isTesting/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/is-testing.html +$dokka.location:ch.datatrans.payment.api/TransactionOptions/samsungPayConfig/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/samsung-pay-config.html +$dokka.location:ch.datatrans.payment.api/TransactionOptions/suppressTransactionErrorDialog/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/suppress-transaction-error-dialog.html +$dokka.location:ch.datatrans.payment.api/TransactionOptions/useCertificatePinning/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-options/use-certificate-pinning.html +$dokka.location:ch.datatrans.payment.api/TransactionRegistry///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/index.html +$dokka.location:ch.datatrans.payment.api/TransactionRegistry/startTransaction/#android.app.Activity#ch.datatrans.payment.api.Transaction/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/start-transaction.html +$dokka.location:ch.datatrans.payment.api/TransactionRegistry/transaction/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-registry/transaction.html +$dokka.location:ch.datatrans.payment.api/TransactionSuccess///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/index.html +$dokka.location:ch.datatrans.payment.api/TransactionSuccess/paymentMethodToken/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/payment-method-token.html +$dokka.location:ch.datatrans.payment.api/TransactionSuccess/paymentMethodType/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/payment-method-type.html +$dokka.location:ch.datatrans.payment.api/TransactionSuccess/transactionId/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.api/-transaction-success/transaction-id.html +$dokka.location:ch.datatrans.payment.exception////PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/index.html +$dokka.location:ch.datatrans.payment.exception/AuthenticationException///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-authentication-exception/index.html +$dokka.location:ch.datatrans.payment.exception/AuthorizationException///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-authorization-exception/index.html +$dokka.location:ch.datatrans.payment.exception/BackendException///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-backend-exception/index.html +$dokka.location:ch.datatrans.payment.exception/BackendException/errorCode/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-backend-exception/error-code.html +$dokka.location:ch.datatrans.payment.exception/TWINTNotInstalledException///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/index.html +$dokka.location:ch.datatrans.payment.exception/TWINTNotInstalledException/TWINTNotInstalledException/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/-t-w-i-n-t-not-installed-exception.html +$dokka.location:ch.datatrans.payment.exception/TechnicalException///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-technical-exception/index.html +$dokka.location:ch.datatrans.payment.exception/TransactionException///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/index.html +$dokka.location:ch.datatrans.payment.exception/TransactionException/paymentMethodType/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/payment-method-type.html +$dokka.location:ch.datatrans.payment.exception/TransactionException/transactionId/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.exception/-transaction-exception/transaction-id.html +$dokka.location:ch.datatrans.payment.paymentmethods////PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/Card///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/Card/Card/#ch.datatrans.payment.paymentmethods.PaymentMethodType#kotlin.String#ch.datatrans.payment.paymentmethods.CardExpiryDate#kotlin.String?#kotlin.String?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/-card.html +$dokka.location:ch.datatrans.payment.paymentmethods/Card/cardholder/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/cardholder.html +$dokka.location:ch.datatrans.payment.paymentmethods/Card/cvv/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/cvv.html +$dokka.location:ch.datatrans.payment.paymentmethods/Card/expiryDate/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/expiry-date.html +$dokka.location:ch.datatrans.payment.paymentmethods/Card/number/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/number.html +$dokka.location:ch.datatrans.payment.paymentmethods/Card/type/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card/type.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate/CardExpiryDate/#kotlin.Int#kotlin.Int/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/-card-expiry-date.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate/equals/#kotlin.Any?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/equals.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate/formattedMonth/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-month.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate/formattedYear/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-year.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate/hashCode/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/hash-code.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate/month/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/month.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate/toString/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/to-string.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardExpiryDate/year/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-expiry-date/year.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/CardToken/#ch.datatrans.payment.paymentmethods.PaymentMethodType#kotlin.String#ch.datatrans.payment.paymentmethods.CardExpiryDate#kotlin.String?#kotlin.String?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/-card-token.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/cardExpiryDate/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/card-expiry-date.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/cardholder/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/cardholder.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/clone/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/clone.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/equals/#kotlin.Any?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/equals.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/getAccessibilityTitle/#android.content.Context/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/get-accessibility-title.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/getDisplayTitle/#android.content.Context/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/get-display-title.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/hashCode/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/hash-code.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/isValid/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/is-valid.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/maskedCardNumber/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/masked-card-number.html +$dokka.location:ch.datatrans.payment.paymentmethods/CardToken/toString/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-card-token/to-string.html +$dokka.location:ch.datatrans.payment.paymentmethods/GooglePayConfig.Companion///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/GooglePayConfig.Companion/hasGooglePay/#android.content.Context#kotlin.collections.List[ch.datatrans.payment.paymentmethods.PaymentMethodType]#kotlin.Boolean/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/has-google-pay.html +$dokka.location:ch.datatrans.payment.paymentmethods/GooglePayConfig///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/GooglePayConfig/GooglePayConfig/#kotlin.collections.List[ch.datatrans.payment.paymentmethods.PaymentMethodType]#kotlin.String#kotlin.Boolean/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-google-pay-config/-google-pay-config.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken/PayPalToken/#kotlin.String#kotlin.String?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/-pay-pal-token.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken/clone/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/clone.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken/equals/#kotlin.Any?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/equals.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken/getAccessibilityTitle/#android.content.Context/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-accessibility-title.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken/getDisplayTitle/#android.content.Context/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-display-title.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken/hashCode/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/hash-code.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken/payPalEmail/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/pay-pal-email.html +$dokka.location:ch.datatrans.payment.paymentmethods/PayPalToken/toString/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-pay-pal-token/to-string.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken.Companion///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken.Companion/create/#kotlin.ByteArray/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/create.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken.Companion/create/#kotlin.String/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/create.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/PaymentMethodToken/#ch.datatrans.payment.paymentmethods.PaymentMethodType#kotlin.String/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/-payment-method-token.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/clone/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/clone.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/equals/#kotlin.Any?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/equals.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/getAccessibilityTitle/#android.content.Context/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/get-accessibility-title.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/getDisplayTitle/#android.content.Context/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/get-display-title.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/hashCode/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/hash-code.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/isValid/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/is-valid.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/toJson/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/to-json.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/toString/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/to-string.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/token/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/token.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodToken/type/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-token/type.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.AMERICAN_EXPRESS///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.AMERICAN_EXPRESS/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.AMERICAN_EXPRESS/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.AMERICAN_EXPRESS/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.BONCARD///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.BONCARD/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.BONCARD/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.BONCARD/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-o-n-c-a-r-d/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.BYJUNO///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.BYJUNO/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.BYJUNO/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.BYJUNO/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.Companion///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.Companion/fromIdentifier/#kotlin.String/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/from-identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.DINERS_CLUB///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.DINERS_CLUB/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.DINERS_CLUB/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.DINERS_CLUB/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.DISCOVER///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.DISCOVER/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.DISCOVER/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.DISCOVER/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.EASYPAY///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.EASYPAY/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.EASYPAY/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.EASYPAY/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.GOOGLE_PAY///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.GOOGLE_PAY/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.GOOGLE_PAY/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.GOOGLE_PAY/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.JCB///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.JCB/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.JCB/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.JCB/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.MASTER_CARD///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.MASTER_CARD/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.MASTER_CARD/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.MASTER_CARD/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.MY_ONE///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.MY_ONE/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.MY_ONE/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.MY_ONE/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.PAYSAFECARD///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.PAYSAFECARD/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.PAYSAFECARD/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.PAYSAFECARD/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.PAY_PAL///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.PAY_PAL/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.PAY_PAL/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.PAY_PAL/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POST_FINANCE_CARD///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POST_FINANCE_CARD/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POST_FINANCE_CARD/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POST_FINANCE_CARD/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POST_FINANCE_EFINANCE///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POST_FINANCE_EFINANCE/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POST_FINANCE_EFINANCE/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POST_FINANCE_EFINANCE/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POWERPAY///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POWERPAY/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POWERPAY/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.POWERPAY/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.REKA///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.REKA/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.REKA/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.REKA/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SAMSUNG_PAY///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SAMSUNG_PAY/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SAMSUNG_PAY/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SAMSUNG_PAY/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SEPA///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SEPA/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SEPA/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SEPA/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SUPERCARD///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SUPERCARD/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SUPERCARD/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SUPERCARD/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SWISS_BILLING///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SWISS_BILLING/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SWISS_BILLING/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SWISS_BILLING/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SWISS_PASS///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SWISS_PASS/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SWISS_PASS/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.SWISS_PASS/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.TWINT///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.TWINT/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.TWINT/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.TWINT/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.UATP///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.UATP/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.UATP/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.UATP/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.VISA///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.VISA/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.VISA/name/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/name.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType.VISA/ordinal/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/ordinal.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PaymentMethodType/identifier/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-payment-method-type/identifier.html +$dokka.location:ch.datatrans.payment.paymentmethods/PostFinanceCardToken///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/PostFinanceCardToken/PostFinanceCardToken/#kotlin.String#ch.datatrans.payment.paymentmethods.CardExpiryDate?#kotlin.String?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/-post-finance-card-token.html +$dokka.location:ch.datatrans.payment.paymentmethods/PostFinanceCardToken/clone/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-post-finance-card-token/clone.html +$dokka.location:ch.datatrans.payment.paymentmethods/RekaToken///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/RekaToken/RekaToken/#kotlin.String#ch.datatrans.payment.paymentmethods.CardExpiryDate#kotlin.String?/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/-reka-token.html +$dokka.location:ch.datatrans.payment.paymentmethods/RekaToken/clone/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-reka-token/clone.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken/SEPAToken/#kotlin.String#kotlin.String/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/-s-e-p-a-token.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken/SEPAToken/#kotlin.String/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/-s-e-p-a-token.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken/bankCode/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/bank-code.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken/clone/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/clone.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken/getAccessibilityTitle/#android.content.Context/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-accessibility-title.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken/getDisplayTitle/#android.content.Context/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-display-title.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken/toString/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/to-string.html +$dokka.location:ch.datatrans.payment.paymentmethods/SEPAToken/token/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/token.html +$dokka.location:ch.datatrans.payment.paymentmethods/SamsungPayConfig.Companion///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/SamsungPayConfig.Companion/hasSamsungPay/#android.content.Context#kotlin.collections.List[ch.datatrans.payment.paymentmethods.PaymentMethodType]#kotlin.Boolean/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/has-samsung-pay.html +$dokka.location:ch.datatrans.payment.paymentmethods/SamsungPayConfig///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/index.html +$dokka.location:ch.datatrans.payment.paymentmethods/SamsungPayConfig/SamsungPayConfig/#kotlin.collections.List[ch.datatrans.payment.paymentmethods.PaymentMethodType]#kotlin.String/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-samsung-pay-config.html +$dokka.location:ch.datatrans.payment////PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment/index.html +$dokka.location:ch.datatrans.payment/ExternalProcessRelayActivity///PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment/-external-process-relay-activity/index.html +$dokka.location:ch.datatrans.payment/ExternalProcessRelayActivity/ExternalProcessRelayActivity/#/PointingToDeclaration/-datatrans -android -s-d-k/ch.datatrans.payment/-external-process-relay-activity/-external-process-relay-activity.html +ch.datatrans.payment +ch.datatrans.payment.api +ch.datatrans.payment.exception +ch.datatrans.payment.paymentmethods + diff --git a/docs/ch.datatrans.payment.api/-transaction-listener/index.html b/docs/ch.datatrans.payment.api/-transaction-listener/index.html deleted file mode 100644 index 696fa0b..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-listener/index.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - TransactionListener - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TransactionListener

-
interface TransactionListener

Implement TransactionListener to be notified when a transaction ends. TransactionListener will notify you about the success, error or cancel state of the processed transaction.

-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
onTransactionCancel -
Link copied to clipboard
-
-
-
- -
-
open fun onTransactionCancel()
-
-
This is called after a transaction has been cancelled.
-
-
-
-
- -
-
-
onTransactionError -
Link copied to clipboard
-
-
-
- -
-
abstract fun onTransactionError(exception: TransactionException)
-
-
This is called after a transaction fails or encounters an error.
-
-
-
-
- -
-
-
onTransactionSuccess -
Link copied to clipboard
-
-
-
- -
-
abstract fun onTransactionSuccess(result: TransactionSuccess)
-
-
This is called after a transaction has been successfully completed.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-cancel.html b/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-cancel.html deleted file mode 100644 index d99094d..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-cancel.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - onTransactionCancel - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

onTransactionCancel

-
-
- -
-
open fun onTransactionCancel()
-
-

This is called after a transaction has been cancelled. This callback can be used to cancel any on-going process involving the transaction.

Some payment methods - such as Twint that involves an app-switch - also call this method when a payment error or decline occurs, to prevent showing an error dialog twice, as an error is already displayed in the payment application.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-error.html b/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-error.html deleted file mode 100644 index a0079e7..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-error.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - onTransactionError - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

onTransactionError

-
-
- -
-
abstract fun onTransactionError(exception: TransactionException)
-
-

This is called after a transaction fails or encounters an error. Keep in mind that the SDK shows the error to the user before this is invoked. Therefore, this callback can be used to cancel any on-going process involving the transaction.

You may also use the error details provided here and display it the way you want when suppressing the error message within the TransactionOptions.

Parameters

exception

The exception that occurred.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-success.html b/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-success.html deleted file mode 100644 index c0702c8..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-listener/on-transaction-success.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - onTransactionSuccess - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

onTransactionSuccess

-
-
- -
-
abstract fun onTransactionSuccess(result: TransactionSuccess)
-
-

This is called after a transaction has been successfully completed. This callback provides details about the transaction.

Parameters

result

The object including the information related to the transaction success.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/-transaction-options.html b/docs/ch.datatrans.payment.api/-transaction-options/-transaction-options.html deleted file mode 100644 index 98b8e87..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/-transaction-options.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - TransactionOptions - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TransactionOptions

-
-
- -
-
fun TransactionOptions()
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/app-callback-scheme.html b/docs/ch.datatrans.payment.api/-transaction-options/app-callback-scheme.html deleted file mode 100644 index 1bfef5a..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/app-callback-scheme.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - appCallbackScheme - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

appCallbackScheme

-
-
- -
-
var appCallbackScheme: String? = null
-
-

Your unique callback scheme to be used by the external web process (for example PayPal) to return to the merchant app.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/google-pay-config.html b/docs/ch.datatrans.payment.api/-transaction-options/google-pay-config.html deleted file mode 100644 index 6e23b23..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/google-pay-config.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - googlePayConfig - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

googlePayConfig

-
-
- -
-
var googlePayConfig: GooglePayConfig? = null
-
-

Specify the GooglePayConfig object here. This is mandatory for Google Pay transactions.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/index.html b/docs/ch.datatrans.payment.api/-transaction-options/index.html deleted file mode 100644 index c7ee56a..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/index.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - TransactionOptions - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TransactionOptions

-
class TransactionOptions

This class can be used to specify miscellaneous options related to the transaction.

-
-
-
-
-

Constructors

-
-
-
-
TransactionOptions -
Link copied to clipboard
-
-
-
-
fun TransactionOptions()
-
-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
appCallbackScheme -
Link copied to clipboard
-
-
-
-
var appCallbackScheme: String? = null
Your unique callback scheme to be used by the external web process (for example PayPal) to return to the merchant app.
-
-
-
-
- -
-
-
googlePayConfig -
Link copied to clipboard
-
-
-
-
var googlePayConfig: GooglePayConfig? = null
Specify the GooglePayConfig object here.
-
-
-
-
- -
-
-
isTesting -
Link copied to clipboard
-
-
-
-
var isTesting: Boolean = false
Use this setting to switch from production to sandbox.
-
-
-
-
- -
-
-
merchantProperties -
Link copied to clipboard
-
-
-
-
var merchantProperties: Map<String, String>
-
-
-
-
- -
-
-
samsungPayConfig -
Link copied to clipboard
-
-
-
-
var samsungPayConfig: SamsungPayConfig? = null
Specify the SamsungPayConfig object here.
-
-
-
-
- -
-
-
suppressTransactionErrorDialog -
Link copied to clipboard
-
-
-
-
var suppressTransactionErrorDialog: Boolean = false
Use this setting to display or hide critical and transaction errors.
-
-
-
-
- -
-
-
useCertificatePinning -
Link copied to clipboard
-
-
-
-
var useCertificatePinning: Boolean = false
Whether secure connections to Datatrans servers require a certificate chain signed with a specific CA private key.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/is-testing.html b/docs/ch.datatrans.payment.api/-transaction-options/is-testing.html deleted file mode 100644 index 1bc8ec0..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/is-testing.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isTesting - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isTesting

-
-
- -
-
var isTesting: Boolean = false
-
-

Use this setting to switch from production to sandbox. If not specified, the SDK will call the Datatrans production environment.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/merchant-properties.html b/docs/ch.datatrans.payment.api/-transaction-options/merchant-properties.html deleted file mode 100644 index 6d40cf7..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/merchant-properties.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - merchantProperties - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

merchantProperties

-
-
- -
-
var merchantProperties: Map<String, String>
-
-

Suppress

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/samsung-pay-config.html b/docs/ch.datatrans.payment.api/-transaction-options/samsung-pay-config.html deleted file mode 100644 index 327b10e..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/samsung-pay-config.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - samsungPayConfig - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

samsungPayConfig

-
-
- -
-
var samsungPayConfig: SamsungPayConfig? = null
-
-

Specify the SamsungPayConfig object here. This is mandatory for Samsung Pay transactions.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/suppress-transaction-error-dialog.html b/docs/ch.datatrans.payment.api/-transaction-options/suppress-transaction-error-dialog.html deleted file mode 100644 index f2a3ebe..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/suppress-transaction-error-dialog.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - suppressTransactionErrorDialog - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

suppressTransactionErrorDialog

-
-
- -
-
var suppressTransactionErrorDialog: Boolean = false
-
-

Use this setting to display or hide critical and transaction errors.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-options/use-certificate-pinning.html b/docs/ch.datatrans.payment.api/-transaction-options/use-certificate-pinning.html deleted file mode 100644 index ca18e61..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-options/use-certificate-pinning.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - useCertificatePinning - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

useCertificatePinning

-
-
- -
-
var useCertificatePinning: Boolean = false
-
-

Whether secure connections to Datatrans servers require a certificate chain signed with a specific CA private key. The device's trust settings are explicitly ignored, i.e. custom installed/white-listed certificates and/or CAs will not work.

Implementation uses SecureRandom, make sure to patch your app if you intend to use this feature on older devices. (See here for more information.)

Please be advised that enabling this option will break your app in many corporate networks with anti-malware/-theft/-espionage SSL proxying.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-registry/index.html b/docs/ch.datatrans.payment.api/-transaction-registry/index.html deleted file mode 100644 index 42f6190..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-registry/index.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - TransactionRegistry - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TransactionRegistry

-
object TransactionRegistry

This object is the main class to start any operation with the SDK.

-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
startTransaction -
Link copied to clipboard
-
-
-
- -
-
fun startTransaction(activity: Activity, transaction: Transaction)
-
-
Starts the SDK and displays any needed user interface using the provided activity.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
transaction -
Link copied to clipboard
-
-
-
-
var transaction: Transaction? = null
The currently active transaction.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-registry/start-transaction.html b/docs/ch.datatrans.payment.api/-transaction-registry/start-transaction.html deleted file mode 100644 index a281496..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-registry/start-transaction.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - startTransaction - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

startTransaction

-
-
- -
-
fun startTransaction(activity: Activity, transaction: Transaction)
-
-

Starts the SDK and displays any needed user interface using the provided activity. Note that a transaction can only be started once.

Parameters

activity

Activity used to present the user interface during an on-going transaction

transaction

Transaction that gets started

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-registry/transaction.html b/docs/ch.datatrans.payment.api/-transaction-registry/transaction.html deleted file mode 100644 index 2178e37..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-registry/transaction.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - transaction - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

transaction

-
-
- -
-
var transaction: Transaction? = null
-
-

The currently active transaction. Use this if the starting activity has been destroyed and you have to reset the TransactionListener.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-success/index.html b/docs/ch.datatrans.payment.api/-transaction-success/index.html deleted file mode 100644 index d71aaa9..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-success/index.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - TransactionSuccess - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TransactionSuccess

-
class TransactionSuccess

This class includes the success message and other details of a transaction. You will also obtain a transactionId that you can use for operations after the transaction (for example settlement, cancel or refund requests).

-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
paymentMethodToken -
Link copied to clipboard
-
-
-
-
val paymentMethodToken: PaymentMethodToken? = null
Object containing the token details of the payment method.
-
-
-
-
- -
-
-
paymentMethodType -
Link copied to clipboard
-
-
-
-
val paymentMethodType: PaymentMethodType
The payment method used during the transaction.
-
-
-
-
- -
-
-
transactionId -
Link copied to clipboard
-
-
-
-
val transactionId: String
The transactionId that you can use for operations after the transaction (for example settlement, cancel or refund requests).
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-success/payment-method-token.html b/docs/ch.datatrans.payment.api/-transaction-success/payment-method-token.html deleted file mode 100644 index 4325c9b..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-success/payment-method-token.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - paymentMethodToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

paymentMethodToken

-
-
- -
-
val paymentMethodToken: PaymentMethodToken? = null
-
-

Object containing the token details of the payment method. The token details are also returned to your webhook and can be accessed with a status server-to-server request.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-success/payment-method-type.html b/docs/ch.datatrans.payment.api/-transaction-success/payment-method-type.html deleted file mode 100644 index 5267bf5..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-success/payment-method-type.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - paymentMethodType - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

paymentMethodType

-
-
- -
-
val paymentMethodType: PaymentMethodType
-
-

The payment method used during the transaction.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction-success/transaction-id.html b/docs/ch.datatrans.payment.api/-transaction-success/transaction-id.html deleted file mode 100644 index f31c9d6..0000000 --- a/docs/ch.datatrans.payment.api/-transaction-success/transaction-id.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - transactionId - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

transactionId

-
-
- -
-
val transactionId: String
-
-

The transactionId that you can use for operations after the transaction (for example settlement, cancel or refund requests).

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction/-transaction.html b/docs/ch.datatrans.payment.api/-transaction/-transaction.html deleted file mode 100644 index 0cc329a..0000000 --- a/docs/ch.datatrans.payment.api/-transaction/-transaction.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - Transaction - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Transaction

-
-
- -
-
fun Transaction(mobileToken: String, card: Card)
-
-

Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call together with the card information. Please note that this will only be used if you have direct access to the card information of your customers. For this to work, you can only send one payment method in your server-to-server init call. Use this constructor if you use your own UI fields for the card information.

Parameters

mobileToken

The mobileToken that has previously been initialized with a server-to-server init call.

card

Card object used for the transaction.

-
- -
-
fun Transaction(mobileToken: String, paymentMethodTokens: List<PaymentMethodToken>)
-
-

Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call and display a selection of one or more saved tokens. The user will then be able to click on their desired saved token to finalize the payment.

Parameters

mobileToken

The mobileToken that has previously been initialized with a server-to-server init call.

paymentMethodTokens

Specify here the tokens that are available for selection to the user.

-
- -
-
fun Transaction(mobileToken: String)
-
-

Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call. After this class is initialized, you should define its listener and the options properties.

Parameters

mobileToken

The mobileToken that has previously been initialized with a server-to-server init call.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction/index.html b/docs/ch.datatrans.payment.api/-transaction/index.html deleted file mode 100644 index bf14c7d..0000000 --- a/docs/ch.datatrans.payment.api/-transaction/index.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - Transaction - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Transaction

-
class Transaction(mobileToken: String)

Use this class to start a transaction with a mobileToken that has previously been initialized with a server-to-server init call. After the transaction has been completed - regardless if successful or not - the listener will be called with some basic information about the success or failure.

-
-
-
-
-

Parameters

-
-
mobileToken

The mobileToken that has previously been initialized with a server-to-server init call.

-
-

Constructors

-
-
-
-
Transaction -
Link copied to clipboard
-
-
-
-
fun Transaction(mobileToken: String, card: Card)
Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call together with the card information.
-
-
-
-
- -
-
-
Transaction -
Link copied to clipboard
-
-
-
-
fun Transaction(mobileToken: String, paymentMethodTokens: List<PaymentMethodToken>)
Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call and display a selection of one or more saved tokens.
-
-
-
-
- -
-
-
Transaction -
Link copied to clipboard
-
-
-
-
fun Transaction(mobileToken: String)
Use this constructor to start the SDK with a mobileToken that has previously been initialized with a server-to-server init call.
-
-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
listener -
Link copied to clipboard
-
-
-
-
var listener: TransactionListener? = null
This listener will be notified after a transaction has been completed, regardless if successful or not.
-
-
-
-
- -
-
-
options -
Link copied to clipboard
-
-
-
-
var options: TransactionOptions
The available options for how a transaction is handled by the mobile SDK.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction/listener.html b/docs/ch.datatrans.payment.api/-transaction/listener.html deleted file mode 100644 index e218def..0000000 --- a/docs/ch.datatrans.payment.api/-transaction/listener.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - listener - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

listener

-
-
- -
-
var listener: TransactionListener? = null
-
-

This listener will be notified after a transaction has been completed, regardless if successful or not.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/-transaction/options.html b/docs/ch.datatrans.payment.api/-transaction/options.html deleted file mode 100644 index a5821c9..0000000 --- a/docs/ch.datatrans.payment.api/-transaction/options.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - options - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

options

-
-
- -
-
var options: TransactionOptions
-
-

The available options for how a transaction is handled by the mobile SDK.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.api/index.html b/docs/ch.datatrans.payment.api/index.html deleted file mode 100644 index 551dd7c..0000000 --- a/docs/ch.datatrans.payment.api/index.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - ch.datatrans.payment.api - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Package ch.datatrans.payment.api

-
-
-
-
-

Types

-
-
-
-
Transaction -
Link copied to clipboard
-
-
-
- -
-
class Transaction(mobileToken: String)
-
-
Use this class to start a transaction with a mobileToken that has previously been initialized with a server-to-server init call.
-
-
-
-
- -
-
-
TransactionListener -
Link copied to clipboard
-
-
-
- -
-
interface TransactionListener
-
-
Implement TransactionListener to be notified when a transaction ends.
-
-
-
-
- -
-
-
TransactionOptions -
Link copied to clipboard
-
-
-
- -
-
class TransactionOptions
-
-
This class can be used to specify miscellaneous options related to the transaction.
-
-
-
-
- -
-
-
TransactionRegistry -
Link copied to clipboard
-
-
-
- -
-
object TransactionRegistry
-
-
This object is the main class to start any operation with the SDK.
-
-
-
-
- -
-
-
TransactionSuccess -
Link copied to clipboard
-
-
-
- -
-
class TransactionSuccess
-
-
This class includes the success message and other details of a transaction.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-authentication-exception/index.html b/docs/ch.datatrans.payment.exception/-authentication-exception/index.html deleted file mode 100644 index 2287251..0000000 --- a/docs/ch.datatrans.payment.exception/-authentication-exception/index.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - AuthenticationException - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

AuthenticationException

-
class AuthenticationException : TransactionException

This class contains information which is available when authentication fails.

-
-
-
-
-

Functions

-
-
-
-
addSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun addSuppressed(p0: Throwable)
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
fillInStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun fillInStackTrace(): Throwable
-
-
-
-
-
-
- -
-
-
getLocalizedMessage -
Link copied to clipboard
-
-
-
- -
-
open fun getLocalizedMessage(): String
-
-
-
-
-
-
- -
-
-
getStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun getStackTrace(): Array<StackTraceElement>
-
-
-
-
-
-
- -
-
-
getSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun getSuppressed(): Array<Throwable>
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
initCause -
Link copied to clipboard
-
-
-
- -
-
open fun initCause(p0: Throwable): Throwable
-
-
-
-
-
-
- -
-
-
printStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
-
-
-
-
-
-
- -
-
-
setStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun setStackTrace(p0: Array<StackTraceElement>)
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cause -
Link copied to clipboard
-
-
-
-
open val cause: Throwable?
-
-
-
-
- -
-
-
message -
Link copied to clipboard
-
-
-
-
open val message: String?
-
-
-
-
- -
-
-
paymentMethodType -
Link copied to clipboard
-
-
-
-
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
-
-
-
-
- -
-
-
transactionId -
Link copied to clipboard
-
-
-
-
val transactionId: String?
The identifier of the failed transaction.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-authorization-exception/index.html b/docs/ch.datatrans.payment.exception/-authorization-exception/index.html deleted file mode 100644 index 2a01e7d..0000000 --- a/docs/ch.datatrans.payment.exception/-authorization-exception/index.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - AuthorizationException - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

AuthorizationException

-
class AuthorizationException : TransactionException

This class contains information which is available when authorization fails.

-
-
-
-
-

Functions

-
-
-
-
addSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun addSuppressed(p0: Throwable)
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
fillInStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun fillInStackTrace(): Throwable
-
-
-
-
-
-
- -
-
-
getLocalizedMessage -
Link copied to clipboard
-
-
-
- -
-
open fun getLocalizedMessage(): String
-
-
-
-
-
-
- -
-
-
getStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun getStackTrace(): Array<StackTraceElement>
-
-
-
-
-
-
- -
-
-
getSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun getSuppressed(): Array<Throwable>
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
initCause -
Link copied to clipboard
-
-
-
- -
-
open fun initCause(p0: Throwable): Throwable
-
-
-
-
-
-
- -
-
-
printStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
-
-
-
-
-
-
- -
-
-
setStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun setStackTrace(p0: Array<StackTraceElement>)
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cause -
Link copied to clipboard
-
-
-
-
open val cause: Throwable?
-
-
-
-
- -
-
-
message -
Link copied to clipboard
-
-
-
-
open val message: String?
-
-
-
-
- -
-
-
paymentMethodType -
Link copied to clipboard
-
-
-
-
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
-
-
-
-
- -
-
-
transactionId -
Link copied to clipboard
-
-
-
-
val transactionId: String?
The identifier of the failed transaction.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-backend-exception/error-code.html b/docs/ch.datatrans.payment.exception/-backend-exception/error-code.html deleted file mode 100644 index 1e79532..0000000 --- a/docs/ch.datatrans.payment.exception/-backend-exception/error-code.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - errorCode - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

errorCode

-
-
- -
-
val errorCode: Int
-
-

Returns the underlying datatrans backend error code.

Return

The datatrans backend error code

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-backend-exception/index.html b/docs/ch.datatrans.payment.exception/-backend-exception/index.html deleted file mode 100644 index 8409626..0000000 --- a/docs/ch.datatrans.payment.exception/-backend-exception/index.html +++ /dev/null @@ -1,280 +0,0 @@ - - - - BackendException - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

BackendException

-
class BackendException : Exception

This class contains information which is available when the datatrans backend returns an error.

-
-
-
-
-

Functions

-
-
-
-
addSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun addSuppressed(p0: Throwable)
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
fillInStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun fillInStackTrace(): Throwable
-
-
-
-
-
-
- -
-
-
getLocalizedMessage -
Link copied to clipboard
-
-
-
- -
-
open fun getLocalizedMessage(): String
-
-
-
-
-
-
- -
-
-
getStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun getStackTrace(): Array<StackTraceElement>
-
-
-
-
-
-
- -
-
-
getSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun getSuppressed(): Array<Throwable>
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
initCause -
Link copied to clipboard
-
-
-
- -
-
open fun initCause(p0: Throwable): Throwable
-
-
-
-
-
-
- -
-
-
printStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
-
-
-
-
-
-
- -
-
-
setStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun setStackTrace(p0: Array<StackTraceElement>)
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cause -
Link copied to clipboard
-
-
-
-
open val cause: Throwable?
-
-
-
-
- -
-
-
errorCode -
Link copied to clipboard
-
-
-
-
val errorCode: Int
Returns the underlying datatrans backend error code.
-
-
-
-
- -
-
-
message -
Link copied to clipboard
-
-
-
-
open val message: String?
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/-t-w-i-n-t-not-installed-exception.html b/docs/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/-t-w-i-n-t-not-installed-exception.html deleted file mode 100644 index ff6f732..0000000 --- a/docs/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/-t-w-i-n-t-not-installed-exception.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - TWINTNotInstalledException - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TWINTNotInstalledException

-
-
- -
-
fun TWINTNotInstalledException()
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/index.html b/docs/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/index.html deleted file mode 100644 index 6753b3e..0000000 --- a/docs/ch.datatrans.payment.exception/-t-w-i-n-t-not-installed-exception/index.html +++ /dev/null @@ -1,308 +0,0 @@ - - - - TWINTNotInstalledException - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TWINTNotInstalledException

-
class TWINTNotInstalledException : TechnicalException

This class contains information which is available if a user selects the TWINT payment method without having the app installed.

-
-
-
-
-

Constructors

-
-
-
-
TWINTNotInstalledException -
Link copied to clipboard
-
-
-
-
fun TWINTNotInstalledException()
-
-
-
-
-
-

Functions

-
-
-
-
addSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun addSuppressed(p0: Throwable)
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
fillInStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun fillInStackTrace(): Throwable
-
-
-
-
-
-
- -
-
-
getLocalizedMessage -
Link copied to clipboard
-
-
-
- -
-
open fun getLocalizedMessage(): String
-
-
-
-
-
-
- -
-
-
getStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun getStackTrace(): Array<StackTraceElement>
-
-
-
-
-
-
- -
-
-
getSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun getSuppressed(): Array<Throwable>
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
initCause -
Link copied to clipboard
-
-
-
- -
-
open fun initCause(p0: Throwable): Throwable
-
-
-
-
-
-
- -
-
-
printStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
-
-
-
-
-
-
- -
-
-
setStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun setStackTrace(p0: Array<StackTraceElement>)
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cause -
Link copied to clipboard
-
-
-
-
open val cause: Throwable?
-
-
-
-
- -
-
-
message -
Link copied to clipboard
-
-
-
-
open val message: String?
-
-
-
-
- -
-
-
paymentMethodType -
Link copied to clipboard
-
-
-
-
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
-
-
-
-
- -
-
-
transactionId -
Link copied to clipboard
-
-
-
-
val transactionId: String?
The identifier of the failed transaction.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-technical-exception/index.html b/docs/ch.datatrans.payment.exception/-technical-exception/index.html deleted file mode 100644 index c98cbd0..0000000 --- a/docs/ch.datatrans.payment.exception/-technical-exception/index.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - TechnicalException - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TechnicalException

-
open class TechnicalException : TransactionException

This class contains information which is available when there is a technical problem for example when Google Pay fails for an unknown reason.

-
-
-
-
-

Functions

-
-
-
-
addSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun addSuppressed(p0: Throwable)
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
fillInStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun fillInStackTrace(): Throwable
-
-
-
-
-
-
- -
-
-
getLocalizedMessage -
Link copied to clipboard
-
-
-
- -
-
open fun getLocalizedMessage(): String
-
-
-
-
-
-
- -
-
-
getStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun getStackTrace(): Array<StackTraceElement>
-
-
-
-
-
-
- -
-
-
getSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun getSuppressed(): Array<Throwable>
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
initCause -
Link copied to clipboard
-
-
-
- -
-
open fun initCause(p0: Throwable): Throwable
-
-
-
-
-
-
- -
-
-
printStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
-
-
-
-
-
-
- -
-
-
setStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun setStackTrace(p0: Array<StackTraceElement>)
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cause -
Link copied to clipboard
-
-
-
-
open val cause: Throwable?
-
-
-
-
- -
-
-
message -
Link copied to clipboard
-
-
-
-
open val message: String?
-
-
-
-
- -
-
-
paymentMethodType -
Link copied to clipboard
-
-
-
-
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
-
-
-
-
- -
-
-
transactionId -
Link copied to clipboard
-
-
-
-
val transactionId: String?
The identifier of the failed transaction.
-
-
-
-
-
-

Inheritors

-
-
-
-
TWINTNotInstalledException -
Link copied to clipboard
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-transaction-exception/index.html b/docs/ch.datatrans.payment.exception/-transaction-exception/index.html deleted file mode 100644 index 4916521..0000000 --- a/docs/ch.datatrans.payment.exception/-transaction-exception/index.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - TransactionException - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TransactionException

-
open class TransactionException : Exception

This class includes the error message and other details of a transaction.

-
-
-
-
-

Functions

-
-
-
-
addSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun addSuppressed(p0: Throwable)
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
fillInStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun fillInStackTrace(): Throwable
-
-
-
-
-
-
- -
-
-
getLocalizedMessage -
Link copied to clipboard
-
-
-
- -
-
open fun getLocalizedMessage(): String
-
-
-
-
-
-
- -
-
-
getStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun getStackTrace(): Array<StackTraceElement>
-
-
-
-
-
-
- -
-
-
getSuppressed -
Link copied to clipboard
-
-
-
- -
-
fun getSuppressed(): Array<Throwable>
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
initCause -
Link copied to clipboard
-
-
-
- -
-
open fun initCause(p0: Throwable): Throwable
-
-
-
-
-
-
- -
-
-
printStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
-
-
-
-
-
-
- -
-
-
setStackTrace -
Link copied to clipboard
-
-
-
- -
-
open fun setStackTrace(p0: Array<StackTraceElement>)
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cause -
Link copied to clipboard
-
-
-
-
open val cause: Throwable?
-
-
-
-
- -
-
-
message -
Link copied to clipboard
-
-
-
-
open val message: String?
-
-
-
-
- -
-
-
paymentMethodType -
Link copied to clipboard
-
-
-
-
val paymentMethodType: PaymentMethodType?
The payment method used during the transaction.
-
-
-
-
- -
-
-
transactionId -
Link copied to clipboard
-
-
-
-
val transactionId: String?
The identifier of the failed transaction.
-
-
-
-
-
-

Inheritors

-
-
-
-
AuthenticationException -
Link copied to clipboard
-
-
-
-
- -
-
-
AuthorizationException -
Link copied to clipboard
-
-
-
-
- -
-
-
TechnicalException -
Link copied to clipboard
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-transaction-exception/payment-method-type.html b/docs/ch.datatrans.payment.exception/-transaction-exception/payment-method-type.html deleted file mode 100644 index 5533f6b..0000000 --- a/docs/ch.datatrans.payment.exception/-transaction-exception/payment-method-type.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - paymentMethodType - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

paymentMethodType

-
-
- -
-
val paymentMethodType: PaymentMethodType?
-
-

The payment method used during the transaction.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/-transaction-exception/transaction-id.html b/docs/ch.datatrans.payment.exception/-transaction-exception/transaction-id.html deleted file mode 100644 index 09acb7d..0000000 --- a/docs/ch.datatrans.payment.exception/-transaction-exception/transaction-id.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - transactionId - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

transactionId

-
-
- -
-
val transactionId: String?
-
-

The identifier of the failed transaction.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.exception/index.html b/docs/ch.datatrans.payment.exception/index.html deleted file mode 100644 index 5a43769..0000000 --- a/docs/ch.datatrans.payment.exception/index.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - ch.datatrans.payment.exception - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Package ch.datatrans.payment.exception

-
-
-
-
-

Types

-
-
-
-
AuthenticationException -
Link copied to clipboard
-
-
-
- -
-
class AuthenticationException : TransactionException
-
-
This class contains information which is available when authentication fails.
-
-
-
-
- -
-
-
AuthorizationException -
Link copied to clipboard
-
-
-
- -
-
class AuthorizationException : TransactionException
-
-
This class contains information which is available when authorization fails.
-
-
-
-
- -
-
-
BackendException -
Link copied to clipboard
-
-
-
- -
-
class BackendException : Exception
-
-
This class contains information which is available when the datatrans backend returns an error.
-
-
-
-
- -
-
-
TechnicalException -
Link copied to clipboard
-
-
-
- -
-
open class TechnicalException : TransactionException
-
-
This class contains information which is available when there is a technical problem for example when Google Pay fails for an unknown reason.
-
-
-
-
- -
-
-
TransactionException -
Link copied to clipboard
-
-
-
- -
-
open class TransactionException : Exception
-
-
This class includes the error message and other details of a transaction.
-
-
-
-
- -
-
-
TWINTNotInstalledException -
Link copied to clipboard
-
-
-
- -
-
class TWINTNotInstalledException : TechnicalException
-
-
This class contains information which is available if a user selects the TWINT payment method without having the app installed.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/-card-expiry-date.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/-card-expiry-date.html deleted file mode 100644 index 19f306a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/-card-expiry-date.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - CardExpiryDate - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

CardExpiryDate

-
-
- -
-
fun CardExpiryDate(month: Int, year: Int)
-
-

Initializes the card expiry date with the given month and year.

Parameters

month

Card expiry month, 1, 12, e.g. 1 for January or 12 for December

year

Card expiry year, 2 or 4 digits, e.g. 30 or 2030

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/equals.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/equals.html deleted file mode 100644 index 90b370a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/equals.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - equals - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

equals

-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-month.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-month.html deleted file mode 100644 index 5d01855..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-month.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - formattedMonth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

formattedMonth

-
-
- -
-
val formattedMonth: String
-
-

Formats the month to a two digit string.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-year.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-year.html deleted file mode 100644 index 1b778bd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/formatted-year.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - formattedYear - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

formattedYear

-
-
- -
-
val formattedYear: String
-
-

Formats the year to a two digit string.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/hash-code.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/hash-code.html deleted file mode 100644 index 5ee25da..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/hash-code.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - hashCode - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

hashCode

-
-
- -
-
open override fun hashCode(): Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/index.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/index.html deleted file mode 100644 index 970f10b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/index.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - CardExpiryDate - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

CardExpiryDate

-
class CardExpiryDate(month: Int, year: Int) : Serializable

Class to be used to represent the card expiry date (month and year).

-
-
-
-
-

Parameters

-
-
month

Card expiry month, 1, 12, e.g. 1 for January or 12 for December

year

Card expiry year, 2 or 4 digits, e.g. 30 or 2030

-
-

Constructors

-
-
-
-
CardExpiryDate -
Link copied to clipboard
-
-
-
-
fun CardExpiryDate(month: Int, year: Int)
Initializes the card expiry date with the given month and year.
-
-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
formattedMonth -
Link copied to clipboard
-
-
-
-
val formattedMonth: String
Formats the month to a two digit string.
-
-
-
-
- -
-
-
formattedYear -
Link copied to clipboard
-
-
-
-
val formattedYear: String
Formats the year to a two digit string.
-
-
-
-
- -
-
-
month -
Link copied to clipboard
-
-
-
-
var month: Int
Card expiry month, 1, 12, e.g.
-
-
-
-
- -
-
-
year -
Link copied to clipboard
-
-
-
-
var year: Int
Card expiry year, 2 or 4 digits, e.g.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/month.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/month.html deleted file mode 100644 index ae5e21e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/month.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - month - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

month

-
-
- -
-
var month: Int
-
-

Card expiry month, 1, 12, e.g. 1 for January or 12 for December

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/to-string.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/to-string.html deleted file mode 100644 index 51d427f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/to-string.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - toString - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

toString

-
-
- -
-
open override fun toString(): String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/year.html b/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/year.html deleted file mode 100644 index 2b8d1bd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-expiry-date/year.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - year - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

year

-
-
- -
-
var year: Int
-
-

Card expiry year, 2 or 4 digits, e.g. 30 or 2030

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/-card-token.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/-card-token.html deleted file mode 100644 index 8f47a22..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/-card-token.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - CardToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

CardToken

-
-
- -
-
fun CardToken(type: PaymentMethodType, token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?, cardholder: String?)
-
-

Initializes a card token object with the given card data.

Parameters

type

Payment method type, e.g. Visa

token

This is the token for the card, also known as alias. This can be used to debit the card without further customer interaction.

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the first 6 digits and the last 4 digits of the card, e.g. 432930xxxxxx6095.

cardholder

Cardholder's name

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/card-expiry-date.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/card-expiry-date.html deleted file mode 100644 index f504ecb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/card-expiry-date.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cardExpiryDate - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cardExpiryDate

-
-
- -
-
var cardExpiryDate: CardExpiryDate? = null
-
-

Expiry date

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/cardholder.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/cardholder.html deleted file mode 100644 index b7ff7f1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/cardholder.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cardholder - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cardholder

-
-
- -
-
var cardholder: String? = null
-
-

Cardholder's name

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/clone.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/clone.html deleted file mode 100644 index de8a084..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/clone.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - clone - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

clone

-
-
- -
-
open override fun clone(): CardToken
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/display-title.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/display-title.html deleted file mode 100644 index 19c98c7..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/display-title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - displayTitle - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

displayTitle

-
-
- -
-
open override val displayTitle: String
-
-

A human readable title e.g. '•••• 6095'

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/equals.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/equals.html deleted file mode 100644 index 8f6ab95..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/equals.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - equals - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

equals

-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/get-accessibility-title.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/get-accessibility-title.html deleted file mode 100644 index cb999a0..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/get-accessibility-title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - getAccessibilityTitle - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

getAccessibilityTitle

-
-
- -
-
open override fun getAccessibilityTitle(context: Context): String
-
-

For TalkBack this title is used instead of displayTitle.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/hash-code.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/hash-code.html deleted file mode 100644 index ebfce98..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/hash-code.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - hashCode - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

hashCode

-
-
- -
-
open override fun hashCode(): Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/index.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/index.html deleted file mode 100644 index ee52c5c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/index.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - CardToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

CardToken

-
open class CardToken : PaymentMethodToken

This class contains the token information about a credit or debit card registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to display a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful card payment or with a dedicated registration.

-
-
-
-
-

Constructors

-
-
-
-
CardToken -
Link copied to clipboard
-
-
-
-
fun CardToken(type: PaymentMethodType, token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?, cardholder: String?)
Initializes a card token object with the given card data.
-
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
open override fun clone(): CardToken
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
getAccessibilityTitle -
Link copied to clipboard
-
-
-
- -
-
open override fun getAccessibilityTitle(context: Context): String
-
-
For TalkBack this title is used instead of displayTitle.
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toJson -
Link copied to clipboard
-
-
-
- -
-
fun toJson(): String
-
-
Returns a JSON string representation of this token payment object.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cardExpiryDate -
Link copied to clipboard
-
-
-
-
var cardExpiryDate: CardExpiryDate? = null
Expiry date
-
-
-
-
- -
-
-
cardholder -
Link copied to clipboard
-
-
-
-
var cardholder: String? = null
Cardholder's name
-
-
-
-
- -
-
-
displayTitle -
Link copied to clipboard
-
-
-
-
open override val displayTitle: String
A human readable title e.g.
-
-
-
-
- -
-
-
isValid -
Link copied to clipboard
-
-
-
-
open override val isValid: Boolean
Checks if the expiration date is in the future or not.
-
-
-
-
- -
-
-
maskedCardNumber -
Link copied to clipboard
-
-
-
-
var maskedCardNumber: String? = null
The masked card number you can use to display that specific card in your app.
-
-
-
-
- -
-
-
token -
Link copied to clipboard
-
-
-
-
open var token: String
The token that can be used to process recurring payments or fast checkouts.
-
-
-
-
- -
-
-
type -
Link copied to clipboard
-
-
-
-
val type: PaymentMethodType
Payment method type, e.g.
-
-
-
-
-
-

Inheritors

-
-
-
-
PostFinanceCardToken -
Link copied to clipboard
-
-
-
-
- -
-
-
RekaToken -
Link copied to clipboard
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/is-valid.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/is-valid.html deleted file mode 100644 index 184b2e5..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/is-valid.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isValid - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isValid

-
-
- -
-
open override val isValid: Boolean
-
-

Checks if the expiration date is in the future or not.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/masked-card-number.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/masked-card-number.html deleted file mode 100644 index 3fa6679..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/masked-card-number.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - maskedCardNumber - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

maskedCardNumber

-
-
- -
-
var maskedCardNumber: String? = null
-
-

The masked card number you can use to display that specific card in your app. The masked card number shows the first 6 digits and the last 4 digits of the card, e.g. 432930xxxxxx6095.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card-token/to-string.html b/docs/ch.datatrans.payment.paymentmethods/-card-token/to-string.html deleted file mode 100644 index 8c0d9cf..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card-token/to-string.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - toString - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

toString

-
-
- -
-
open override fun toString(): String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card/-card.html b/docs/ch.datatrans.payment.paymentmethods/-card/-card.html deleted file mode 100644 index e9dda6f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card/-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - Card - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Card

-
-
- -
-
fun Card(type: PaymentMethodType, number: String, expiryDate: CardExpiryDate, cvv: String? = null, cardholder: String? = null)
-
-

Use this to initialize a card object with the card data.

Parameters

type

Card type, e.g. Visa or Mastercard

number

Card number

expiryDate

Expiry date

cvv

Card security code - null if the card does not have a card security code

cardholder

Cardholder's name

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card/cardholder.html b/docs/ch.datatrans.payment.paymentmethods/-card/cardholder.html deleted file mode 100644 index fccea9e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card/cardholder.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cardholder - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cardholder

-
-
- -
-
val cardholder: String? = null
-
-

Cardholder's name

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card/cvv.html b/docs/ch.datatrans.payment.paymentmethods/-card/cvv.html deleted file mode 100644 index 8537e35..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card/cvv.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvv - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvv

-
-
- -
-
val cvv: String? = null
-
-

Card security code - null if the card does not have a card security code

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card/expiry-date.html b/docs/ch.datatrans.payment.paymentmethods/-card/expiry-date.html deleted file mode 100644 index e9ab340..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card/expiry-date.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - expiryDate - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

expiryDate

-
-
- -
-
val expiryDate: CardExpiryDate
-
-

Expiry date

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card/index.html b/docs/ch.datatrans.payment.paymentmethods/-card/index.html deleted file mode 100644 index bc7610d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card/index.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - Card - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Card

-
class Card(type: PaymentMethodType, number: String, expiryDate: CardExpiryDate, cvv: String?, cardholder: String?)

Use this class to process raw card data for payments. You should use this class if your app takes over the user interface for the card input fields.

-
-
-
-
-

Parameters

-
-
type

Card type, e.g. Visa or Mastercard

number

Card number

expiryDate

Expiry date

cvv

Card security code - null if the card does not have a card security code

cardholder

Cardholder's name

-
-

Constructors

-
-
-
-
Card -
Link copied to clipboard
-
-
-
-
fun Card(type: PaymentMethodType, number: String, expiryDate: CardExpiryDate, cvv: String? = null, cardholder: String? = null)
Use this to initialize a card object with the card data.
-
-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cardholder -
Link copied to clipboard
-
-
-
-
val cardholder: String? = null
Cardholder's name
-
-
-
-
- -
-
-
cvv -
Link copied to clipboard
-
-
-
-
val cvv: String? = null
Card security code - null if the card does not have a card security code
-
-
-
-
- -
-
-
expiryDate -
Link copied to clipboard
-
-
-
-
val expiryDate: CardExpiryDate
Expiry date
-
-
-
-
- -
-
-
number -
Link copied to clipboard
-
-
-
-
val number: String
Card number
-
-
-
-
- -
-
-
type -
Link copied to clipboard
-
-
-
-
val type: PaymentMethodType
Card type, e.g.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card/number.html b/docs/ch.datatrans.payment.paymentmethods/-card/number.html deleted file mode 100644 index deedddc..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card/number.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - number - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

number

-
-
- -
-
val number: String
-
-

Card number

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-card/type.html b/docs/ch.datatrans.payment.paymentmethods/-card/type.html deleted file mode 100644 index f86cf68..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-card/type.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - type - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

type

-
-
- -
-
val type: PaymentMethodType
-
-

Card type, e.g. Visa or Mastercard

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/has-google-pay.html b/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/has-google-pay.html deleted file mode 100644 index ada5ba4..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/has-google-pay.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - hasGooglePay - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

hasGooglePay

-
-
- -
-
suspend fun hasGooglePay(context: Context, supportedNetworks: List<PaymentMethodType>, isTesting: Boolean = false): Boolean
-
-

Although the library automatically hides Google Pay if no cards are supported, this shows if Google Pay is available for the specified card acquirers.

Return

True if Google Pay is available on the device, false if it is unavailable.

Parameters

context

Android context

supportedNetworks

Supported card acquirers

isTesting

True if running on sandbox, false otherwise. Default is false.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/index.html b/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/index.html deleted file mode 100644 index da701e3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-companion/index.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - Companion - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Companion

-
object Companion
-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hasGooglePay -
Link copied to clipboard
-
-
-
- -
-
suspend fun hasGooglePay(context: Context, supportedNetworks: List<PaymentMethodType>, isTesting: Boolean = false): Boolean
-
-
Although the library automatically hides Google Pay if no cards are supported, this shows if Google Pay is available for the specified card acquirers.
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-google-pay-config.html b/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-google-pay-config.html deleted file mode 100644 index 5475c41..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/-google-pay-config.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - GooglePayConfig - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

GooglePayConfig

-
-
- -
-
fun GooglePayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean = false)
-
-

Creates a new GooglePayConfig object.

Parameters

supportedNetworks

Supported card acquirers

merchantName

The displayed merchant name

showLargeButton

Use this option to show Google Pay as a payment button instead of a listed payment method.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/copy.html b/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/copy.html deleted file mode 100644 index 4888ca7..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/copy.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - copy - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

copy

-
-
- -
-
fun copy(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean = false): GooglePayConfig
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/index.html b/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/index.html deleted file mode 100644 index 4cbf065..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-google-pay-config/index.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - GooglePayConfig - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

GooglePayConfig

-
data class GooglePayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean)

Configuration object for Google Pay transactions.

-
-
-
-
-

Parameters

-
-
supportedNetworks

Supported card acquirers

merchantName

The displayed merchant name

showLargeButton

Use this option to show Google Pay as a payment button instead of a listed payment method.

-
-

Constructors

-
-
-
-
GooglePayConfig -
Link copied to clipboard
-
-
-
-
fun GooglePayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean = false)
Creates a new GooglePayConfig object.
-
-
-
-
-
-

Types

-
-
-
-
Companion -
Link copied to clipboard
-
-
-
- -
-
object Companion
-
-
-
-
-
-
-
-

Functions

-
-
-
-
copy -
Link copied to clipboard
-
-
-
- -
-
fun copy(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean = false): GooglePayConfig
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/-pay-pal-token.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/-pay-pal-token.html deleted file mode 100644 index c67e429..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/-pay-pal-token.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - PayPalToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PayPalToken

-
-
- -
-
fun PayPalToken(token: String, payPalEmail: String?)
-
-

This constructor has to be used to initialize a PayPal payment object.

Parameters

token

Token for a PayPal account

payPalEmail

PayPal e-mail address. This will be used for displaying purposes.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/clone.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/clone.html deleted file mode 100644 index b525302..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/clone.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - clone - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

clone

-
-
- -
-
open override fun clone(): PayPalToken
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/display-title.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/display-title.html deleted file mode 100644 index 8019b3e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/display-title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - displayTitle - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

displayTitle

-
-
- -
-
open override val displayTitle: String
-
-

A human readable title

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/equals.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/equals.html deleted file mode 100644 index 7cc387c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/equals.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - equals - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

equals

-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-accessibility-title.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-accessibility-title.html deleted file mode 100644 index 477ae25..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/get-accessibility-title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - getAccessibilityTitle - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

getAccessibilityTitle

-
-
- -
-
open override fun getAccessibilityTitle(context: Context): String
-
-

For TalkBack this title is used instead of displayTitle.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/hash-code.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/hash-code.html deleted file mode 100644 index 692d021..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/hash-code.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - hashCode - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

hashCode

-
-
- -
-
open override fun hashCode(): Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/index.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/index.html deleted file mode 100644 index 8bbf4a1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/index.html +++ /dev/null @@ -1,240 +0,0 @@ - - - - PayPalToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PayPalToken

-
class PayPalToken(token: String, payPalEmail: String?) : PaymentMethodToken

This class contains the token information about a PayPal registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to show a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful PayPal payment or with a dedicated registration.

-
-
-
-
-

Parameters

-
-
token

Token for a PayPal account

payPalEmail

PayPal e-mail address. This will be used for displaying purposes.

-
-

Constructors

-
-
-
-
PayPalToken -
Link copied to clipboard
-
-
-
-
fun PayPalToken(token: String, payPalEmail: String?)
This constructor has to be used to initialize a PayPal payment object.
-
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
open override fun clone(): PayPalToken
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
getAccessibilityTitle -
Link copied to clipboard
-
-
-
- -
-
open override fun getAccessibilityTitle(context: Context): String
-
-
For TalkBack this title is used instead of displayTitle.
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toJson -
Link copied to clipboard
-
-
-
- -
-
fun toJson(): String
-
-
Returns a JSON string representation of this token payment object.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
displayTitle -
Link copied to clipboard
-
-
-
-
open override val displayTitle: String
A human readable title
-
-
-
-
- -
-
-
isValid -
Link copied to clipboard
-
-
-
-
open val isValid: Boolean = true
Checks if the payment method token is valid.
-
-
-
-
- -
-
-
payPalEmail -
Link copied to clipboard
-
-
-
-
val payPalEmail: String?
PayPal e-mail address.
-
-
-
-
- -
-
-
token -
Link copied to clipboard
-
-
-
-
open var token: String
The token that can be used to process recurring payments or fast checkouts.
-
-
-
-
- -
-
-
type -
Link copied to clipboard
-
-
-
-
val type: PaymentMethodType
Payment method type, e.g.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/pay-pal-email.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/pay-pal-email.html deleted file mode 100644 index c6b264a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/pay-pal-email.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - payPalEmail - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

payPalEmail

-
-
- -
-
val payPalEmail: String?
-
-

PayPal e-mail address. This will be used for displaying purposes.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/to-string.html b/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/to-string.html deleted file mode 100644 index 3731259..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-pay-pal-token/to-string.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - toString - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

toString

-
-
- -
-
open override fun toString(): String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/create.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/create.html deleted file mode 100644 index 445562e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/create.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - create - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

create

-
-
- -
-
fun create(jsonString: String): PaymentMethodToken
-
-

Creates a new token payment object from a given JSON string. This is a convenience method for serialization/deserialization.

Return

The deserialized token payment object

Parameters

jsonString

JSON string to be deserialized into a token payment object

-
- -
-
fun create(legacyTokenData: ByteArray): PaymentMethodToken?
-
-

Creates a new token payment object from data encoded by the old payment library.

Return

The decoded PaymentMethodToken, CardToken, PostFinanceCardToken, RekaToken or PayPalToken, if successful, null if legacyData is invalid.

Parameters

legacyTokenData

Data encoded by the old payment library

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/index.html deleted file mode 100644 index 005ae23..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-companion/index.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - Companion - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Companion

-
object Companion
-
-
-
-
-

Functions

-
-
-
-
create -
Link copied to clipboard
-
-
-
- -
-
fun create(legacyTokenData: ByteArray): PaymentMethodToken?
-
-
Creates a new token payment object from data encoded by the old payment library.
-
- -
-
fun create(jsonString: String): PaymentMethodToken
-
-
Creates a new token payment object from a given JSON string.
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-payment-method-token.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-payment-method-token.html deleted file mode 100644 index 8e2394c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/-payment-method-token.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - PaymentMethodToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PaymentMethodToken

-
-
- -
-
fun PaymentMethodToken(type: PaymentMethodType, token: String)
-
-

This constructor has to be used to initialize a payment object.

Parameters

type

Payment method type, e.g. PayPal or Twint.

token

The token that can be used to process recurring payments or fast checkouts.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/clone.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/clone.html deleted file mode 100644 index 59ce7d9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/clone.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - clone - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

clone

-
-
- -
-
open override fun clone(): PaymentMethodToken
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/display-title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/display-title.html deleted file mode 100644 index de8f9e4..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/display-title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - displayTitle - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

displayTitle

-
-
- -
-
open val displayTitle: String
-
-

A human readable title

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/equals.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/equals.html deleted file mode 100644 index 203fab9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/equals.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - equals - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

equals

-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/get-accessibility-title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/get-accessibility-title.html deleted file mode 100644 index b3f33eb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/get-accessibility-title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - getAccessibilityTitle - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

getAccessibilityTitle

-
-
- -
-
open fun getAccessibilityTitle(context: Context): String
-
-

For TalkBack this title is used instead of displayTitle.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/hash-code.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/hash-code.html deleted file mode 100644 index 7fd4588..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/hash-code.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - hashCode - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

hashCode

-
-
- -
-
open override fun hashCode(): Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/index.html deleted file mode 100644 index c82316a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/index.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - PaymentMethodToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PaymentMethodToken

-
open class PaymentMethodToken(type: PaymentMethodType, token: String) : Serializable, Cloneable

This class is the base token class to gather token information and process recurring payments or fast checkouts with any payment method. This class is sufficient to process payments with tokens of some payment methods (e.g. Twint). More complex payment methods require you to specify some more details in their token subclasses (e.g. card payments, PostFinance, etc.). Please refer to the list below to see if you need to call an additional token subclass for your payments.

  • Easy payment methods: Swisscom Easypay, SEPA (ELV), Twint, Google Pay, Byjuno, SwissPass, Powerpay Invoice

  • Complex payment methods (requiring token subclass): Card payments, PayPal, PostFinance, Reka

Please refer to the Datatrans documentation to see if you can register a token during payment or require a dedicated registration.

-
-
-
-
-

Parameters

-
-
type

Payment method type, e.g. PayPal or Twint.

token

The token that can be used to process recurring payments or fast checkouts.

-
-

Constructors

-
-
-
-
PaymentMethodToken -
Link copied to clipboard
-
-
-
-
fun PaymentMethodToken(type: PaymentMethodType, token: String)
This constructor has to be used to initialize a payment object.
-
-
-
-
-
-

Types

-
-
-
-
Companion -
Link copied to clipboard
-
-
-
- -
-
object Companion
-
-
-
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
open override fun clone(): PaymentMethodToken
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
getAccessibilityTitle -
Link copied to clipboard
-
-
-
- -
-
open fun getAccessibilityTitle(context: Context): String
-
-
For TalkBack this title is used instead of displayTitle.
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toJson -
Link copied to clipboard
-
-
-
- -
-
fun toJson(): String
-
-
Returns a JSON string representation of this token payment object.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
displayTitle -
Link copied to clipboard
-
-
-
-
open val displayTitle: String
A human readable title
-
-
-
-
- -
-
-
isValid -
Link copied to clipboard
-
-
-
-
open val isValid: Boolean = true
Checks if the payment method token is valid.
-
-
-
-
- -
-
-
token -
Link copied to clipboard
-
-
-
-
open var token: String
The token that can be used to process recurring payments or fast checkouts.
-
-
-
-
- -
-
-
type -
Link copied to clipboard
-
-
-
-
val type: PaymentMethodType
Payment method type, e.g.
-
-
-
-
-
-

Inheritors

-
-
-
-
CardToken -
Link copied to clipboard
-
-
-
-
- -
-
-
PayPalToken -
Link copied to clipboard
-
-
-
-
- -
-
-
SEPAToken -
Link copied to clipboard
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/is-valid.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/is-valid.html deleted file mode 100644 index 8f35f42..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/is-valid.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isValid - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isValid

-
-
- -
-
open val isValid: Boolean = true
-
-

Checks if the payment method token is valid. This property will also be used to tell you if data (e.g. expiry date) from the token subclasses is correct or not.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/to-json.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/to-json.html deleted file mode 100644 index 7696ec2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/to-json.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - toJson - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

toJson

-
-
- -
-
fun toJson(): String
-
-

Returns a JSON string representation of this token payment object. This is a convenience method for serialization/deserialization.

Return

The JSON string representation

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/to-string.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/to-string.html deleted file mode 100644 index 386c892..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/to-string.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - toString - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

toString

-
-
- -
-
open override fun toString(): String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/token.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/token.html deleted file mode 100644 index 992483a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/token.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - token - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

token

-
-
- -
-
open var token: String
-
-

The token that can be used to process recurring payments or fast checkouts.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/type.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/type.html deleted file mode 100644 index a13d19c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-token/type.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - type - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

type

-
-
- -
-
val type: PaymentMethodType
-
-

Payment method type, e.g. Visa.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/cvv-length.html deleted file mode 100644 index efe7df1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/flags.html deleted file mode 100644 index 2e6dd1b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/identifier.html deleted file mode 100644 index 6dba71a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/index.html deleted file mode 100644 index 8f5db5e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - AMERICAN_EXPRESS - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

AMERICAN_EXPRESS

-
AMERICAN_EXPRESS("AMX", "American Express", 15, listOf(4, 10), 4, listOf("34", "37"), R.drawable.dtpl_payment_method_amx)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/is-credit-card.html deleted file mode 100644 index 8ed02fb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/logo.html deleted file mode 100644 index 8db1595..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/name.html deleted file mode 100644 index 5f57b15..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/number-length.html deleted file mode 100644 index ae25ab1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/number-spaces.html deleted file mode 100644 index 4563406..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/ordinal.html deleted file mode 100644 index 0511e76..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/prefixes.html deleted file mode 100644 index 30e201a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/recurring-payment-method-class.html deleted file mode 100644 index f6b12f8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/title.html deleted file mode 100644 index f1eace2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/view-port-adjustment.html deleted file mode 100644 index 311b2a9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/view-port-width.html deleted file mode 100644 index e981bce..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-a-m-e-r-i-c-a-n_-e-x-p-r-e-s-s/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/cvv-length.html deleted file mode 100644 index ec326bf..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/flags.html deleted file mode 100644 index c76b6e3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/identifier.html deleted file mode 100644 index 240c23d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/index.html deleted file mode 100644 index 1bb46a6..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - BYJUNO - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

BYJUNO

-
BYJUNO("INT", "Byjuno", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_int)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/is-credit-card.html deleted file mode 100644 index c216a19..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/logo.html deleted file mode 100644 index f0f25b1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/name.html deleted file mode 100644 index 340da1a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/number-length.html deleted file mode 100644 index a1ed87e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/number-spaces.html deleted file mode 100644 index f719ed9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/ordinal.html deleted file mode 100644 index 07b4b4f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/prefixes.html deleted file mode 100644 index 869c087..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/recurring-payment-method-class.html deleted file mode 100644 index 25863d0..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/title.html deleted file mode 100644 index 72e3de5..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/view-port-adjustment.html deleted file mode 100644 index 39ffdbe..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/view-port-width.html deleted file mode 100644 index 074c53b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-b-y-j-u-n-o/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/from-identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/from-identifier.html deleted file mode 100644 index 6bfd661..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/from-identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - fromIdentifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

fromIdentifier

-
-
- -
-
fun fromIdentifier(identifier: String): PaymentMethodType?
-
-

This function returns the PaymentMethodType based on the Datatrans payment method identifier.

Return

The payment method type, e.g. Visa

Parameters

identifier

The payment method identifier from Datatrans

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/index.html deleted file mode 100644 index 0efaffd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-companion/index.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - Companion - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Companion

-
object Companion
-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
fromIdentifier -
Link copied to clipboard
-
-
-
- -
-
fun fromIdentifier(identifier: String): PaymentMethodType?
-
-
This function returns the PaymentMethodType based on the Datatrans payment method identifier.
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/cvv-length.html deleted file mode 100644 index 981a97b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/flags.html deleted file mode 100644 index b9fbfe9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/identifier.html deleted file mode 100644 index 9b22f4b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/index.html deleted file mode 100644 index d34a044..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - DINERS_CLUB - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

DINERS_CLUB

-
DINERS_CLUB("DIN", "Diners Club", 14, listOf(4, 10), 3, listOf("30", "36", "38", "39"), R.drawable.dtpl_payment_method_din)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/is-credit-card.html deleted file mode 100644 index 4cbfe6a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/logo.html deleted file mode 100644 index b17bc0f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/name.html deleted file mode 100644 index 5e3a0c9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/number-length.html deleted file mode 100644 index 8f421f8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/number-spaces.html deleted file mode 100644 index b7ce37b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/ordinal.html deleted file mode 100644 index 7ca31ce..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/prefixes.html deleted file mode 100644 index fdc9e80..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/recurring-payment-method-class.html deleted file mode 100644 index 1941e81..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/title.html deleted file mode 100644 index 11ba8eb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/view-port-adjustment.html deleted file mode 100644 index bfb660f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/view-port-width.html deleted file mode 100644 index 4cf3abb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-n-e-r-s_-c-l-u-b/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/cvv-length.html deleted file mode 100644 index c1cd875..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/flags.html deleted file mode 100644 index fb415c8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/identifier.html deleted file mode 100644 index 7c31684..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/index.html deleted file mode 100644 index 242a8d4..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - DISCOVER - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

DISCOVER

-
DISCOVER("DIS", "Discover", 16, listOf(4, 8, 12), 3, listOf("60", "64", "65", "622"), R.drawable.dtpl_payment_method_dis)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/is-credit-card.html deleted file mode 100644 index 155b1ec..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/logo.html deleted file mode 100644 index d7230b8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/name.html deleted file mode 100644 index a57bca8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/number-length.html deleted file mode 100644 index 0f8eae3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/number-spaces.html deleted file mode 100644 index 860ce1b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/ordinal.html deleted file mode 100644 index c213070..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/prefixes.html deleted file mode 100644 index 36e73a2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/recurring-payment-method-class.html deleted file mode 100644 index 660a1cd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/title.html deleted file mode 100644 index a61e0a4..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/view-port-adjustment.html deleted file mode 100644 index 3660d32..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/view-port-width.html deleted file mode 100644 index b3a60dc..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-d-i-s-c-o-v-e-r/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/cvv-length.html deleted file mode 100644 index fad95fb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/flags.html deleted file mode 100644 index f2a1e02..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/identifier.html deleted file mode 100644 index 9dabdd1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/index.html deleted file mode 100644 index 6a31cfc..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - EASYPAY - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

EASYPAY

-
EASYPAY("ESY", "Swisscom Easypay", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_esy)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/is-credit-card.html deleted file mode 100644 index d2011a6..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/logo.html deleted file mode 100644 index 780736c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/name.html deleted file mode 100644 index 7eb0afd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/number-length.html deleted file mode 100644 index d439794..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/number-spaces.html deleted file mode 100644 index 682e25f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/ordinal.html deleted file mode 100644 index 14d381f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/prefixes.html deleted file mode 100644 index 8658a84..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/recurring-payment-method-class.html deleted file mode 100644 index 1cca319..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/title.html deleted file mode 100644 index c7e11fb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/view-port-adjustment.html deleted file mode 100644 index 31f8e49..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/view-port-width.html deleted file mode 100644 index 76c6887..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-e-a-s-y-p-a-y/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/cvv-length.html deleted file mode 100644 index 88c4ca3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/flags.html deleted file mode 100644 index edcbe46..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/identifier.html deleted file mode 100644 index ceb5f3a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/index.html deleted file mode 100644 index 5e608b4..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - GOOGLE_PAY - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

GOOGLE_PAY

-
GOOGLE_PAY("PAY", "Google Pay", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_pay)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/is-credit-card.html deleted file mode 100644 index a82b1b6..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/logo.html deleted file mode 100644 index 9e3b11e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/name.html deleted file mode 100644 index c993856..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/number-length.html deleted file mode 100644 index 5798b9c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/number-spaces.html deleted file mode 100644 index ba96582..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/ordinal.html deleted file mode 100644 index 68c238a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/prefixes.html deleted file mode 100644 index 177d6dc..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/recurring-payment-method-class.html deleted file mode 100644 index 0716073..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/title.html deleted file mode 100644 index 9abcf51..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/view-port-adjustment.html deleted file mode 100644 index 3f55934..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/view-port-width.html deleted file mode 100644 index cdec289..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-g-o-o-g-l-e_-p-a-y/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/cvv-length.html deleted file mode 100644 index 6cbe608..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/flags.html deleted file mode 100644 index 919fb8b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/identifier.html deleted file mode 100644 index 63e8b47..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/index.html deleted file mode 100644 index 5111b39..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - JCB - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

JCB

-
JCB("JCB", "JCB", 16, listOf(4, 8, 12), 3, listOf("3528", "3529", "353", "354", "355", "356", "357", "358"), R.drawable.dtpl_payment_method_jcb)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/is-credit-card.html deleted file mode 100644 index 6770acd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/logo.html deleted file mode 100644 index fbce418..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/name.html deleted file mode 100644 index a96c9cc..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/number-length.html deleted file mode 100644 index 8d0eac5..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/number-spaces.html deleted file mode 100644 index 14d5b73..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/ordinal.html deleted file mode 100644 index 40d5eb5..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/prefixes.html deleted file mode 100644 index 5556309..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/recurring-payment-method-class.html deleted file mode 100644 index 8fc644d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/title.html deleted file mode 100644 index 361401b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/view-port-adjustment.html deleted file mode 100644 index 7555fc1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/view-port-width.html deleted file mode 100644 index 297b02a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-j-c-b/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/cvv-length.html deleted file mode 100644 index 7ae334a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/flags.html deleted file mode 100644 index e9dd1d4..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/identifier.html deleted file mode 100644 index 738ba4d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/index.html deleted file mode 100644 index 640d55e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - MASTER_CARD - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

MASTER_CARD

-
MASTER_CARD("ECA", "Mastercard", 16, listOf(4, 8, 12), 3, listOf("5"), R.drawable.dtpl_payment_method_eca)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/is-credit-card.html deleted file mode 100644 index 60671b1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/logo.html deleted file mode 100644 index a386131..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/name.html deleted file mode 100644 index 2448d9c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/number-length.html deleted file mode 100644 index 5028506..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/number-spaces.html deleted file mode 100644 index 5f2a0a3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/ordinal.html deleted file mode 100644 index 9d5ead6..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/prefixes.html deleted file mode 100644 index fc76cb3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/recurring-payment-method-class.html deleted file mode 100644 index c8b62e8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/title.html deleted file mode 100644 index 522e131..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/view-port-adjustment.html deleted file mode 100644 index 03078fa..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/view-port-width.html deleted file mode 100644 index 67dce88..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-a-s-t-e-r_-c-a-r-d/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/cvv-length.html deleted file mode 100644 index ebec641..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/flags.html deleted file mode 100644 index c458148..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/identifier.html deleted file mode 100644 index 03e1e73..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/index.html deleted file mode 100644 index 7a588ec..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - MY_ONE - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

MY_ONE

-
MY_ONE("MYO", "MyOne", 19, listOf(9, 16), 3, listOf("60045202"), R.drawable.dtpl_payment_method_myo)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/is-credit-card.html deleted file mode 100644 index 3ee7cab..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/logo.html deleted file mode 100644 index 8b484d0..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/name.html deleted file mode 100644 index 307648a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/number-length.html deleted file mode 100644 index 07151a3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/number-spaces.html deleted file mode 100644 index cc6e1f7..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/ordinal.html deleted file mode 100644 index e1f9575..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/prefixes.html deleted file mode 100644 index 4e43dc9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/recurring-payment-method-class.html deleted file mode 100644 index 9cad95e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/title.html deleted file mode 100644 index f2b0728..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/view-port-adjustment.html deleted file mode 100644 index 097be1d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/view-port-width.html deleted file mode 100644 index 59b3500..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-m-y_-o-n-e/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/cvv-length.html deleted file mode 100644 index cd8dd15..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/flags.html deleted file mode 100644 index 12701db..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/identifier.html deleted file mode 100644 index fdf7380..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/index.html deleted file mode 100644 index 819d72f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - PAYSAFECARD - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PAYSAFECARD

-
PAYSAFECARD("PSC", "Paysafecard", null, R.drawable.dtpl_payment_method_psc)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/is-credit-card.html deleted file mode 100644 index 4d98c4d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/logo.html deleted file mode 100644 index 9ae0bb2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/name.html deleted file mode 100644 index e1a2de2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/number-length.html deleted file mode 100644 index 5900b77..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/number-spaces.html deleted file mode 100644 index c6b7fa6..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/ordinal.html deleted file mode 100644 index 7c3d7fa..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/prefixes.html deleted file mode 100644 index bc93f08..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/recurring-payment-method-class.html deleted file mode 100644 index f93ae2b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/title.html deleted file mode 100644 index 651c5d1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/view-port-adjustment.html deleted file mode 100644 index 5c5bdea..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/view-port-width.html deleted file mode 100644 index fa96ed3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y-s-a-f-e-c-a-r-d/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/cvv-length.html deleted file mode 100644 index dff8783..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/flags.html deleted file mode 100644 index bc2eebb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/identifier.html deleted file mode 100644 index 98abd2e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/index.html deleted file mode 100644 index 47f5443..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - PAY_PAL - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PAY_PAL

-
PAY_PAL("PAP", "PayPal", PayPalToken::class.java, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pap, PaymentMethodFlags.EXTERNAL_WEB_PROCESS)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/is-credit-card.html deleted file mode 100644 index 2c5ec6a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/logo.html deleted file mode 100644 index de5f898..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/name.html deleted file mode 100644 index c356252..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/number-length.html deleted file mode 100644 index 50e9f7a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/number-spaces.html deleted file mode 100644 index 79060bb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/ordinal.html deleted file mode 100644 index 08e7210..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/prefixes.html deleted file mode 100644 index 0e9e8aa..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/recurring-payment-method-class.html deleted file mode 100644 index fab439c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/title.html deleted file mode 100644 index 7a89b78..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/view-port-adjustment.html deleted file mode 100644 index b42c021..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/view-port-width.html deleted file mode 100644 index ed98fbf..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-a-y_-p-a-l/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/cvv-length.html deleted file mode 100644 index efd4a96..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/flags.html deleted file mode 100644 index 226d4ba..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/identifier.html deleted file mode 100644 index 6927f67..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/index.html deleted file mode 100644 index 90467cf..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - POST_FINANCE_CARD - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

POST_FINANCE_CARD

-
POST_FINANCE_CARD("PFC", "PostFinance Card", PostFinanceCardToken::class.java, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pfc)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/is-credit-card.html deleted file mode 100644 index fd659b8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/logo.html deleted file mode 100644 index 8a25216..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/name.html deleted file mode 100644 index 2bd51ff..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/number-length.html deleted file mode 100644 index 27d1c6d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/number-spaces.html deleted file mode 100644 index 830f920..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/ordinal.html deleted file mode 100644 index b59d9d6..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/prefixes.html deleted file mode 100644 index 87a56f4..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/recurring-payment-method-class.html deleted file mode 100644 index 7078c79..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/title.html deleted file mode 100644 index b2a763f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/view-port-adjustment.html deleted file mode 100644 index 16fffc8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/view-port-width.html deleted file mode 100644 index a67a145..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-c-a-r-d/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/cvv-length.html deleted file mode 100644 index fd5f841..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/flags.html deleted file mode 100644 index da1a8ee..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/identifier.html deleted file mode 100644 index 2adde1a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/index.html deleted file mode 100644 index 8a4a487..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - POST_FINANCE_EFINANCE - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

POST_FINANCE_EFINANCE

-
POST_FINANCE_EFINANCE("PEF", "PostFinance E-Finance", null, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pef)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/is-credit-card.html deleted file mode 100644 index 8fad6b9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/logo.html deleted file mode 100644 index 97c1156..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/name.html deleted file mode 100644 index 93c6a03..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/number-length.html deleted file mode 100644 index bf55216..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/number-spaces.html deleted file mode 100644 index 2cd5a31..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/ordinal.html deleted file mode 100644 index d163acc..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/prefixes.html deleted file mode 100644 index b250ac8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/recurring-payment-method-class.html deleted file mode 100644 index ce2e2d2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/title.html deleted file mode 100644 index ba2ca26..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/view-port-adjustment.html deleted file mode 100644 index 54de26e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/view-port-width.html deleted file mode 100644 index 94526fe..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-s-t_-f-i-n-a-n-c-e_-e-f-i-n-a-n-c-e/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/cvv-length.html deleted file mode 100644 index 3c744c9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/flags.html deleted file mode 100644 index 33f970d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/identifier.html deleted file mode 100644 index 841eef7..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/index.html deleted file mode 100644 index 747083f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - POWERPAY - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

POWERPAY

-
POWERPAY("MFX", "POWERPAY", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_mfx)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/is-credit-card.html deleted file mode 100644 index 516e0a8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/logo.html deleted file mode 100644 index 8ff06bd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/name.html deleted file mode 100644 index 6021e12..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/number-length.html deleted file mode 100644 index 3426fc8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/number-spaces.html deleted file mode 100644 index dbc0347..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/ordinal.html deleted file mode 100644 index 1c15df5..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/prefixes.html deleted file mode 100644 index bedd474..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/recurring-payment-method-class.html deleted file mode 100644 index b336442..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/title.html deleted file mode 100644 index 30d714e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/view-port-adjustment.html deleted file mode 100644 index b0bf922..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/view-port-width.html deleted file mode 100644 index 5584b76..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-p-o-w-e-r-p-a-y/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/cvv-length.html deleted file mode 100644 index c607bbd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/flags.html deleted file mode 100644 index 60c204b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/identifier.html deleted file mode 100644 index 5e4150f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/index.html deleted file mode 100644 index 0272795..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - REKA - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

REKA

-
REKA("REK", "Reka", RekaToken::class.java, R.drawable.dtpl_payment_method_rek)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/is-credit-card.html deleted file mode 100644 index ccf641b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/logo.html deleted file mode 100644 index fae955e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/name.html deleted file mode 100644 index 9bc20ca..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/number-length.html deleted file mode 100644 index f789020..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/number-spaces.html deleted file mode 100644 index 7421a1e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/ordinal.html deleted file mode 100644 index af64035..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/prefixes.html deleted file mode 100644 index 6a3ad85..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/recurring-payment-method-class.html deleted file mode 100644 index 6c81789..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/title.html deleted file mode 100644 index af76e55..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/view-port-adjustment.html deleted file mode 100644 index 7fba38e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/view-port-width.html deleted file mode 100644 index fa3fe32..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-r-e-k-a/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/cvv-length.html deleted file mode 100644 index 80ecc1f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/flags.html deleted file mode 100644 index aff98a8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/identifier.html deleted file mode 100644 index 6c7d88c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/index.html deleted file mode 100644 index 1fbb990..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - SAMSUNG_PAY - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SAMSUNG_PAY

-
SAMSUNG_PAY("SAM", "Samsung Pay", null, R.drawable.dtpl_payment_method_sam)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/is-credit-card.html deleted file mode 100644 index bf67669..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/logo.html deleted file mode 100644 index 5166b4b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/name.html deleted file mode 100644 index fd699f1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/number-length.html deleted file mode 100644 index ccb25c2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/number-spaces.html deleted file mode 100644 index 5a78b05..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/ordinal.html deleted file mode 100644 index c284abb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/prefixes.html deleted file mode 100644 index c758b1e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/recurring-payment-method-class.html deleted file mode 100644 index 1845ead..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/title.html deleted file mode 100644 index acbeadb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/view-port-adjustment.html deleted file mode 100644 index e828201..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/view-port-width.html deleted file mode 100644 index eb4512c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-a-m-s-u-n-g_-p-a-y/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/cvv-length.html deleted file mode 100644 index ded3b5e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/flags.html deleted file mode 100644 index b80d579..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/identifier.html deleted file mode 100644 index ffe5cbf..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/index.html deleted file mode 100644 index 074062d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - SEPA - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SEPA

-
SEPA("ELV", "Lastschrift", SEPAToken::class.java, R.drawable.dtpl_payment_method_elv)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/is-credit-card.html deleted file mode 100644 index 2245d93..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/logo.html deleted file mode 100644 index 7b0b406..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/name.html deleted file mode 100644 index d421185..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/number-length.html deleted file mode 100644 index c4b8998..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/number-spaces.html deleted file mode 100644 index 6ae6c2d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/ordinal.html deleted file mode 100644 index 1a1e105..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/prefixes.html deleted file mode 100644 index f033b9a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/recurring-payment-method-class.html deleted file mode 100644 index e7f7b84..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/title.html deleted file mode 100644 index 2d65320..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/view-port-adjustment.html deleted file mode 100644 index cd38e5c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/view-port-width.html deleted file mode 100644 index 714543e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-e-p-a/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/cvv-length.html deleted file mode 100644 index aac44cb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/flags.html deleted file mode 100644 index 8f8bb4d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/identifier.html deleted file mode 100644 index 6bb9dc7..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/index.html deleted file mode 100644 index 3fbb71e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - SUPERCARD - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SUPERCARD

-
SUPERCARD("SCX", "SUPERCARD", 16, listOf(4, 8, 12), 3, listOf("435379", "435378", "54688725"), R.drawable.dtpl_payment_method_scx)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/is-credit-card.html deleted file mode 100644 index 6193f62..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/logo.html deleted file mode 100644 index 075d360..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/name.html deleted file mode 100644 index fe78847..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/number-length.html deleted file mode 100644 index b30f646..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/number-spaces.html deleted file mode 100644 index 32ef8c7..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/ordinal.html deleted file mode 100644 index b009ca1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/prefixes.html deleted file mode 100644 index 2e5f0be..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/recurring-payment-method-class.html deleted file mode 100644 index 9069201..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/title.html deleted file mode 100644 index 81a0bc9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/view-port-adjustment.html deleted file mode 100644 index 6f01163..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/view-port-width.html deleted file mode 100644 index cd1cfc5..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-u-p-e-r-c-a-r-d/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/cvv-length.html deleted file mode 100644 index a42688f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/flags.html deleted file mode 100644 index f62c46d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/identifier.html deleted file mode 100644 index 3520991..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/index.html deleted file mode 100644 index 2eed74c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - SWISS_BILLING - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SWISS_BILLING

-
SWISS_BILLING("SWB", "SwissBilling", null, R.drawable.dtpl_payment_method_swb)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/is-credit-card.html deleted file mode 100644 index f5f2d1a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/logo.html deleted file mode 100644 index 79e00fe..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/name.html deleted file mode 100644 index 8e97792..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/number-length.html deleted file mode 100644 index f452580..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/number-spaces.html deleted file mode 100644 index 7d809de..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/ordinal.html deleted file mode 100644 index 0541b69..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/prefixes.html deleted file mode 100644 index 08640a9..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/recurring-payment-method-class.html deleted file mode 100644 index 738a829..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/title.html deleted file mode 100644 index b2a1665..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/view-port-adjustment.html deleted file mode 100644 index 07cea09..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/view-port-width.html deleted file mode 100644 index 2276822..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-b-i-l-l-i-n-g/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/cvv-length.html deleted file mode 100644 index 113a912..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/flags.html deleted file mode 100644 index 0221a4e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/identifier.html deleted file mode 100644 index ca06f18..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/index.html deleted file mode 100644 index bef3977..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - SWISS_PASS - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SWISS_PASS

-
SWISS_PASS("SWP", "SwissPass", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_swp)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/is-credit-card.html deleted file mode 100644 index d9ee2a5..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/logo.html deleted file mode 100644 index f889260..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/name.html deleted file mode 100644 index efb34ed..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/number-length.html deleted file mode 100644 index 6207c86..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/number-spaces.html deleted file mode 100644 index 2a4b75a..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/ordinal.html deleted file mode 100644 index 3d70327..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/prefixes.html deleted file mode 100644 index 3cc9528..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/recurring-payment-method-class.html deleted file mode 100644 index 612a940..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/title.html deleted file mode 100644 index 1fc7b2e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/view-port-adjustment.html deleted file mode 100644 index 68717a5..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/view-port-width.html deleted file mode 100644 index 4424e4d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-s-w-i-s-s_-p-a-s-s/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/cvv-length.html deleted file mode 100644 index 23e4402..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/flags.html deleted file mode 100644 index c966d9c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/identifier.html deleted file mode 100644 index df6e9fe..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/index.html deleted file mode 100644 index 28f7d61..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - TWINT - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

TWINT

-
TWINT("TWI", "TWINT", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_twi)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/is-credit-card.html deleted file mode 100644 index abf4950..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/logo.html deleted file mode 100644 index ee6c30b..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/name.html deleted file mode 100644 index d5c6c3c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/number-length.html deleted file mode 100644 index ff0f993..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/number-spaces.html deleted file mode 100644 index 8c4a922..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/ordinal.html deleted file mode 100644 index c43d76c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/prefixes.html deleted file mode 100644 index 358bf61..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/recurring-payment-method-class.html deleted file mode 100644 index 9f569cb..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/title.html deleted file mode 100644 index 1109706..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/view-port-adjustment.html deleted file mode 100644 index 7b34a22..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/view-port-width.html deleted file mode 100644 index 605b648..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-t-w-i-n-t/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/cvv-length.html deleted file mode 100644 index 105d6bd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/flags.html deleted file mode 100644 index 9e771be..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/identifier.html deleted file mode 100644 index 1ee96e2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/index.html deleted file mode 100644 index 5149858..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - UATP - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

UATP

-
UATP("UAP", "UATP", 15, listOf(4, 9), 0, listOf("1"), R.drawable.dtpl_payment_method_uap)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/is-credit-card.html deleted file mode 100644 index 8196644..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/logo.html deleted file mode 100644 index 93cb4fe..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/name.html deleted file mode 100644 index 5ee1b71..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/number-length.html deleted file mode 100644 index 082afab..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/number-spaces.html deleted file mode 100644 index 8c70d01..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/ordinal.html deleted file mode 100644 index e27fa17..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/prefixes.html deleted file mode 100644 index 4e5e120..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/recurring-payment-method-class.html deleted file mode 100644 index db3aade..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/title.html deleted file mode 100644 index d6fe325..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/view-port-adjustment.html deleted file mode 100644 index 7c7cbf2..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/view-port-width.html deleted file mode 100644 index f3db0a3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-u-a-t-p/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/cvv-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/cvv-length.html deleted file mode 100644 index 9473bc1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/cvv-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - cvvLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

cvvLength

-
-
- -
-
internal val cvvLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/flags.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/flags.html deleted file mode 100644 index f054b85..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/flags.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - flags - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

flags

-
-
- -
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/identifier.html deleted file mode 100644 index 0bd4fb6..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/index.html deleted file mode 100644 index 5ab579c..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - VISA - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

VISA

-
VISA("VIS", "Visa", 16, listOf(4, 8, 12), 3, listOf("4"), R.drawable.dtpl_payment_method_vis)
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
protected fun clone(): Any
-
-
-
-
-
-
- -
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hasFlag -
Link copied to clipboard
-
-
-
- -
-
internal fun hasFlag(flag: PaymentMethodFlags): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasTokenSupport -
Link copied to clipboard
-
-
-
- -
-
internal fun hasTokenSupport(): Boolean
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cvvLength -
Link copied to clipboard
-
-
-
-
internal val cvvLength: Int
-
-
-
-
- -
-
-
flags -
Link copied to clipboard
-
-
-
-
private val flags: EnumSet<PaymentMethodFlags>
-
-
-
-
- -
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
isCreditCard -
Link copied to clipboard
-
-
-
-
internal val isCreditCard: Boolean
-
-
-
-
- -
-
-
logo -
Link copied to clipboard
-
-
-
-
internal val logo: Int
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
numberLength -
Link copied to clipboard
-
-
-
-
internal val numberLength: Int
-
-
-
-
- -
-
-
numberSpaces -
Link copied to clipboard
-
-
-
-
internal val numberSpaces: List<Int>
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
- -
-
-
prefixes -
Link copied to clipboard
-
-
-
-
internal val prefixes: List<String>
-
-
-
-
- -
-
-
recurringPaymentMethodClass -
Link copied to clipboard
-
-
-
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
-
- -
-
-
title -
Link copied to clipboard
-
-
-
-
internal val title: String
-
-
-
-
- -
-
-
viewPortAdjustment -
Link copied to clipboard
-
-
-
-
internal val viewPortAdjustment: String
-
-
-
-
- -
-
-
viewPortWidth -
Link copied to clipboard
-
-
-
-
internal val viewPortWidth: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/is-credit-card.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/is-credit-card.html deleted file mode 100644 index 4531cd3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/is-credit-card.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - isCreditCard - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

isCreditCard

-
-
- -
-
internal val isCreditCard: Boolean
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/logo.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/logo.html deleted file mode 100644 index 9f42435..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/logo.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - logo - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

logo

-
-
- -
-
internal val logo: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/name.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/name.html deleted file mode 100644 index 437dc7e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/name.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - name - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/number-length.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/number-length.html deleted file mode 100644 index 1d85a5f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/number-length.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberLength - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberLength

-
-
- -
-
internal val numberLength: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/number-spaces.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/number-spaces.html deleted file mode 100644 index 0bdf978..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/number-spaces.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - numberSpaces - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

numberSpaces

-
-
- -
-
internal val numberSpaces: List<Int>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/ordinal.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/ordinal.html deleted file mode 100644 index f0fae93..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/ordinal.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - ordinal - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/prefixes.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/prefixes.html deleted file mode 100644 index dff9aa7..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/prefixes.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - prefixes - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

prefixes

-
-
- -
-
internal val prefixes: List<String>
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/recurring-payment-method-class.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/recurring-payment-method-class.html deleted file mode 100644 index 4f9f4ad..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/recurring-payment-method-class.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - recurringPaymentMethodClass - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

recurringPaymentMethodClass

-
-
- -
-
internal val recurringPaymentMethodClass: Class<*>?
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/title.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/title.html deleted file mode 100644 index 1c6cfcd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - title - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

title

-
-
- -
-
internal val title: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/view-port-adjustment.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/view-port-adjustment.html deleted file mode 100644 index 4bd56df..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/view-port-adjustment.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortAdjustment - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortAdjustment

-
-
- -
-
internal val viewPortAdjustment: String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/view-port-width.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/view-port-width.html deleted file mode 100644 index 536c147..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/-v-i-s-a/view-port-width.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - viewPortWidth - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

viewPortWidth

-
-
- -
-
internal val viewPortWidth: Int
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/identifier.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/identifier.html deleted file mode 100644 index e819fbd..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/identifier.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - identifier - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

identifier

-
-
- -
-
val identifier: String
-
-

The payment method identifier based on the PaymentMethodType.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/index.html b/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/index.html deleted file mode 100644 index bfc4055..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-payment-method-type/index.html +++ /dev/null @@ -1,515 +0,0 @@ - - - - PaymentMethodType - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PaymentMethodType

-
enum PaymentMethodType : Enum<PaymentMethodType>

The payment method used during the transaction.

-
-
-
-
-

Entries

-
-
-
-
VISA -
Link copied to clipboard
-
-
-
-
VISA("VIS", "Visa", 16, listOf(4, 8, 12), 3, listOf("4"), R.drawable.dtpl_payment_method_vis)
-
-
-
-
- -
-
-
MASTER_CARD -
Link copied to clipboard
-
-
-
-
MASTER_CARD("ECA", "Mastercard", 16, listOf(4, 8, 12), 3, listOf("5"), R.drawable.dtpl_payment_method_eca)
-
-
-
-
- -
-
-
DINERS_CLUB -
Link copied to clipboard
-
-
-
-
DINERS_CLUB("DIN", "Diners Club", 14, listOf(4, 10), 3, listOf("30", "36", "38", "39"), R.drawable.dtpl_payment_method_din)
-
-
-
-
- -
-
-
AMERICAN_EXPRESS -
Link copied to clipboard
-
-
-
-
AMERICAN_EXPRESS("AMX", "American Express", 15, listOf(4, 10), 4, listOf("34", "37"), R.drawable.dtpl_payment_method_amx)
-
-
-
-
- -
-
-
JCB -
Link copied to clipboard
-
-
-
-
JCB("JCB", "JCB", 16, listOf(4, 8, 12), 3, listOf("3528", "3529", "353", "354", "355", "356", "357", "358"), R.drawable.dtpl_payment_method_jcb)
-
-
-
-
- -
-
-
MY_ONE -
Link copied to clipboard
-
-
-
-
MY_ONE("MYO", "MyOne", 19, listOf(9, 16), 3, listOf("60045202"), R.drawable.dtpl_payment_method_myo)
-
-
-
-
- -
-
-
UATP -
Link copied to clipboard
-
-
-
-
UATP("UAP", "UATP", 15, listOf(4, 9), 0, listOf("1"), R.drawable.dtpl_payment_method_uap)
-
-
-
-
- -
-
-
DISCOVER -
Link copied to clipboard
-
-
-
-
DISCOVER("DIS", "Discover", 16, listOf(4, 8, 12), 3, listOf("60", "64", "65", "622"), R.drawable.dtpl_payment_method_dis)
-
-
-
-
- -
-
-
SUPERCARD -
Link copied to clipboard
-
-
-
-
SUPERCARD("SCX", "SUPERCARD", 16, listOf(4, 8, 12), 3, listOf("435379", "435378", "54688725"), R.drawable.dtpl_payment_method_scx)
-
-
-
-
- -
-
-
POST_FINANCE_CARD -
Link copied to clipboard
-
-
-
-
POST_FINANCE_CARD("PFC", "PostFinance Card", PostFinanceCardToken::class.java, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pfc)
-
-
-
-
- -
-
-
POST_FINANCE_EFINANCE -
Link copied to clipboard
-
-
-
-
POST_FINANCE_EFINANCE("PEF", "PostFinance E-Finance", null, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pef)
-
-
-
-
- -
-
-
PAY_PAL -
Link copied to clipboard
-
-
-
-
PAY_PAL("PAP", "PayPal", PayPalToken::class.java, "width=device-width, initial-scale=1, maximum-scale=1.2, user-scalable=yes", R.drawable.dtpl_payment_method_pap, PaymentMethodFlags.EXTERNAL_WEB_PROCESS)
-
-
-
-
- -
-
-
EASYPAY -
Link copied to clipboard
-
-
-
-
EASYPAY("ESY", "Swisscom Easypay", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_esy)
-
-
-
-
- -
-
-
SEPA -
Link copied to clipboard
-
-
-
-
SEPA("ELV", "Lastschrift", SEPAToken::class.java, R.drawable.dtpl_payment_method_elv)
-
-
-
-
- -
-
-
SWISS_BILLING -
Link copied to clipboard
-
-
-
-
SWISS_BILLING("SWB", "SwissBilling", null, R.drawable.dtpl_payment_method_swb)
-
-
-
-
- -
-
-
TWINT -
Link copied to clipboard
-
-
-
-
TWINT("TWI", "TWINT", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_twi)
-
-
-
-
- -
-
-
GOOGLE_PAY -
Link copied to clipboard
-
-
-
-
GOOGLE_PAY("PAY", "Google Pay", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_pay)
-
-
-
-
- -
-
-
SAMSUNG_PAY -
Link copied to clipboard
-
-
-
-
SAMSUNG_PAY("SAM", "Samsung Pay", null, R.drawable.dtpl_payment_method_sam)
-
-
-
-
- -
-
-
REKA -
Link copied to clipboard
-
-
-
-
REKA("REK", "Reka", RekaToken::class.java, R.drawable.dtpl_payment_method_rek)
-
-
-
-
- -
-
-
BYJUNO -
Link copied to clipboard
-
-
-
-
BYJUNO("INT", "Byjuno", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_int)
-
-
-
-
- -
-
-
SWISS_PASS -
Link copied to clipboard
-
-
-
-
SWISS_PASS("SWP", "SwissPass", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_swp)
-
-
-
-
- -
-
-
POWERPAY -
Link copied to clipboard
-
-
-
-
POWERPAY("MFX", "POWERPAY", PaymentMethodToken::class.java, R.drawable.dtpl_payment_method_mfx)
-
-
-
-
- -
-
-
PAYSAFECARD -
Link copied to clipboard
-
-
-
-
PAYSAFECARD("PSC", "Paysafecard", null, R.drawable.dtpl_payment_method_psc)
-
-
-
-
-
-

Types

-
-
-
-
Companion -
Link copied to clipboard
-
-
-
- -
-
object Companion
-
-
-
-
-
-
-
-

Functions

-
-
-
-
compareTo -
Link copied to clipboard
-
-
-
- -
-
operator override fun compareTo(other: PaymentMethodType): Int
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
finalize -
Link copied to clipboard
-
-
-
- -
-
fun finalize()
-
-
-
-
-
-
- -
-
-
getDeclaringClass -
Link copied to clipboard
-
-
-
- -
-
fun getDeclaringClass(): Class<PaymentMethodType>
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
identifier -
Link copied to clipboard
-
-
-
-
val identifier: String
The payment method identifier based on the PaymentMethodType.
-
-
-
-
- -
-
-
name -
Link copied to clipboard
-
-
-
-
val name: String
-
-
-
-
- -
-
-
ordinal -
Link copied to clipboard
-
-
-
-
val ordinal: Int
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/-post-finance-card-token.html b/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/-post-finance-card-token.html deleted file mode 100644 index 530ff44..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/-post-finance-card-token.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - PostFinanceCardToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PostFinanceCardToken

-
-
- -
-
fun PostFinanceCardToken(token: String, cardExpiryDate: CardExpiryDate? = null, maskedCardNumber: String?)
-
-

This constructor has to be used to initialize a PostFinance Card payment object.

Parameters

token

Token for a PostFinance Card

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the last 4 digits of the card, e.g. **** 1234.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/clone.html b/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/clone.html deleted file mode 100644 index 5676906..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/clone.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - clone - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

clone

-
-
- -
-
open override fun clone(): PostFinanceCardToken
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/index.html b/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/index.html deleted file mode 100644 index 5cb1634..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-post-finance-card-token/index.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - PostFinanceCardToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

PostFinanceCardToken

-
class PostFinanceCardToken(token: String, cardExpiryDate: CardExpiryDate?, maskedCardNumber: String?) : CardToken

This class contains the token information about a PostFinance Card registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to show a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful PostFinance Card payment or with a dedicated registration.

-
-
-
-
-

Parameters

-
-
token

Token for a PostFinance Card

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the last 4 digits of the card, e.g. **** 1234.

-
-

Constructors

-
-
-
-
PostFinanceCardToken -
Link copied to clipboard
-
-
-
-
fun PostFinanceCardToken(token: String, cardExpiryDate: CardExpiryDate? = null, maskedCardNumber: String?)
This constructor has to be used to initialize a PostFinance Card payment object.
-
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
open override fun clone(): PostFinanceCardToken
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
getAccessibilityTitle -
Link copied to clipboard
-
-
-
- -
-
open override fun getAccessibilityTitle(context: Context): String
-
-
For TalkBack this title is used instead of displayTitle.
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toJson -
Link copied to clipboard
-
-
-
- -
-
fun toJson(): String
-
-
Returns a JSON string representation of this token payment object.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cardExpiryDate -
Link copied to clipboard
-
-
-
-
var cardExpiryDate: CardExpiryDate? = null
Expiry date
-
-
-
-
- -
-
-
cardholder -
Link copied to clipboard
-
-
-
-
var cardholder: String? = null
Cardholder's name
-
-
-
-
- -
-
-
displayTitle -
Link copied to clipboard
-
-
-
-
open override val displayTitle: String
A human readable title e.g.
-
-
-
-
- -
-
-
isValid -
Link copied to clipboard
-
-
-
-
open override val isValid: Boolean
Checks if the expiration date is in the future or not.
-
-
-
-
- -
-
-
maskedCardNumber -
Link copied to clipboard
-
-
-
-
var maskedCardNumber: String? = null
The masked card number you can use to display that specific card in your app.
-
-
-
-
- -
-
-
token -
Link copied to clipboard
-
-
-
-
open var token: String
The token that can be used to process recurring payments or fast checkouts.
-
-
-
-
- -
-
-
type -
Link copied to clipboard
-
-
-
-
val type: PaymentMethodType
Payment method type, e.g.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-reka-token/-reka-token.html b/docs/ch.datatrans.payment.paymentmethods/-reka-token/-reka-token.html deleted file mode 100644 index 016e7a3..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-reka-token/-reka-token.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - RekaToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

RekaToken

-
-
- -
-
fun RekaToken(token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?)
-
-

This constructor has to be used to initialize a Reka payment object.

Parameters

token

Token for a Reka card

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the first 6 digits and the last 4 digits of the card, e.g. 123456xxxxxxxxx1234.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-reka-token/clone.html b/docs/ch.datatrans.payment.paymentmethods/-reka-token/clone.html deleted file mode 100644 index 1f3cb0e..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-reka-token/clone.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - clone - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

clone

-
-
- -
-
open override fun clone(): RekaToken
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-reka-token/index.html b/docs/ch.datatrans.payment.paymentmethods/-reka-token/index.html deleted file mode 100644 index 8319bd1..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-reka-token/index.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - RekaToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

RekaToken

-
class RekaToken(token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?) : CardToken

This class contains the token information about a Reka card registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to show a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful Reka payment or with a dedicated registration.

-
-
-
-
-

Parameters

-
-
token

Token for a Reka card

cardExpiryDate

Expiry date

maskedCardNumber

The masked card number you can use to display that specific card in your app. The masked card number shows the first 6 digits and the last 4 digits of the card, e.g. 123456xxxxxxxxx1234.

-
-

Constructors

-
-
-
-
RekaToken -
Link copied to clipboard
-
-
-
-
fun RekaToken(token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?)
This constructor has to be used to initialize a Reka payment object.
-
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
open override fun clone(): RekaToken
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
getAccessibilityTitle -
Link copied to clipboard
-
-
-
- -
-
open override fun getAccessibilityTitle(context: Context): String
-
-
For TalkBack this title is used instead of displayTitle.
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toJson -
Link copied to clipboard
-
-
-
- -
-
fun toJson(): String
-
-
Returns a JSON string representation of this token payment object.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
cardExpiryDate -
Link copied to clipboard
-
-
-
-
var cardExpiryDate: CardExpiryDate? = null
Expiry date
-
-
-
-
- -
-
-
cardholder -
Link copied to clipboard
-
-
-
-
var cardholder: String? = null
Cardholder's name
-
-
-
-
- -
-
-
displayTitle -
Link copied to clipboard
-
-
-
-
open override val displayTitle: String
A human readable title e.g.
-
-
-
-
- -
-
-
isValid -
Link copied to clipboard
-
-
-
-
open override val isValid: Boolean
Checks if the expiration date is in the future or not.
-
-
-
-
- -
-
-
maskedCardNumber -
Link copied to clipboard
-
-
-
-
var maskedCardNumber: String? = null
The masked card number you can use to display that specific card in your app.
-
-
-
-
- -
-
-
token -
Link copied to clipboard
-
-
-
-
open var token: String
The token that can be used to process recurring payments or fast checkouts.
-
-
-
-
- -
-
-
type -
Link copied to clipboard
-
-
-
-
val type: PaymentMethodType
Payment method type, e.g.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/-s-e-p-a-token.html b/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/-s-e-p-a-token.html deleted file mode 100644 index 2084457..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/-s-e-p-a-token.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - SEPAToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SEPAToken

-
-
- -
-
fun SEPAToken(token: String, bankCode: String)
-
-

This constructor has to be used with SEPA (ELV) tokens created before April 15th 2015. Please refer to the primary constructor for newer tokens.

Parameters

token

Token for SEPA (ELV). This value was returned for tokens created before April 15th 2015.

bankCode

A bank code (German: Bankleitzahl) is a unique identification code for a particular bank. This is required for tokens created before April 15th 2015.

-
- -
-
fun SEPAToken(token: String)
-
-

This constructor has to be used to initialize a SEPA (ELV) payment object.

Parameters

token

Token for SEPA (ELV)

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/bank-code.html b/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/bank-code.html deleted file mode 100644 index 79c72c8..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/bank-code.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - bankCode - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

bankCode

-
-
- -
-
val bankCode: String?
-
-

A bank code (German: Bankleitzahl) is a unique identification code for a particular bank. This is required for tokens created before April 15th 2015.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/clone.html b/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/clone.html deleted file mode 100644 index eddc15f..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/clone.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - clone - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

clone

-
-
- -
-
open override fun clone(): SEPAToken
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/display-title.html b/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/display-title.html deleted file mode 100644 index 9c5090d..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/display-title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - displayTitle - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

displayTitle

-
-
- -
-
open override val displayTitle: String
-
-

A human readable title

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-accessibility-title.html b/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-accessibility-title.html deleted file mode 100644 index 91ced53..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/get-accessibility-title.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - getAccessibilityTitle - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

getAccessibilityTitle

-
-
- -
-
open override fun getAccessibilityTitle(context: Context): String
-
-

For TalkBack this title is used instead of displayTitle.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/index.html b/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/index.html deleted file mode 100644 index 7fb2146..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/index.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - SEPAToken - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SEPAToken

-
class SEPAToken(token: String) : PaymentMethodToken

This class contains the token information about a SEPA (ELV) registration from a previously completed transaction. Just like any other PaymentMethodToken subclass, this class can be used to finalize a payment without user interaction or to show a selection of saved token payments to the user for fast checkouts. A token can be returned after completing a successful SEPA payment or with a dedicated registration.

-
-
-
-
-

Parameters

-
-
token

Token for SEPA (ELV)

-
-

Constructors

-
-
-
-
SEPAToken -
Link copied to clipboard
-
-
-
-
fun SEPAToken(token: String, bankCode: String)
This constructor has to be used with SEPA (ELV) tokens created before April 15th 2015.
-
-
-
-
- -
-
-
SEPAToken -
Link copied to clipboard
-
-
-
-
fun SEPAToken(token: String)
This constructor has to be used to initialize a SEPA (ELV) payment object.
-
-
-
-
-
-

Functions

-
-
-
-
clone -
Link copied to clipboard
-
-
-
- -
-
open override fun clone(): SEPAToken
-
-
-
-
-
-
- -
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
getAccessibilityTitle -
Link copied to clipboard
-
-
-
- -
-
open override fun getAccessibilityTitle(context: Context): String
-
-
For TalkBack this title is used instead of displayTitle.
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open override fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toJson -
Link copied to clipboard
-
-
-
- -
-
fun toJson(): String
-
-
Returns a JSON string representation of this token payment object.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open override fun toString(): String
-
-
-
-
-
-
-
-

Properties

-
-
-
-
bankCode -
Link copied to clipboard
-
-
-
-
val bankCode: String?
A bank code (German: Bankleitzahl) is a unique identification code for a particular bank.
-
-
-
-
- -
-
-
displayTitle -
Link copied to clipboard
-
-
-
-
open override val displayTitle: String
A human readable title
-
-
-
-
- -
-
-
isValid -
Link copied to clipboard
-
-
-
-
open val isValid: Boolean = true
Checks if the payment method token is valid.
-
-
-
-
- -
-
-
token -
Link copied to clipboard
-
-
-
-
open override var token: String
Token for SEPA (ELV)
-
-
-
-
- -
-
-
type -
Link copied to clipboard
-
-
-
-
val type: PaymentMethodType
Payment method type, e.g.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/to-string.html b/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/to-string.html deleted file mode 100644 index 90c0102..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/to-string.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - toString - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

toString

-
-
- -
-
open override fun toString(): String
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/token.html b/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/token.html deleted file mode 100644 index 06fff49..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-s-e-p-a-token/token.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - token - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

token

-
-
- -
-
open override var token: String
-
-

Token for SEPA (ELV)

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/has-samsung-pay.html b/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/has-samsung-pay.html deleted file mode 100644 index 7524443..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/has-samsung-pay.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - hasSamsungPay - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

hasSamsungPay

-
-
- -
-
suspend fun hasSamsungPay(context: Context, supportedNetworks: List<PaymentMethodType>, isTesting: Boolean = false): Boolean
-
-

Although the library automatically hides Samsung Pay if no cards are supported, this shows if Samsung Pay is available for the specified card acquirers.

Return

True if Samsung Pay is available on the device, false if it is unavailable.

Parameters

context

Android context

supportedNetworks

Supported card acquirers

isTesting

True if running on sandbox, false otherwise. Default is false.

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/index.html b/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/index.html deleted file mode 100644 index b51c887..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-companion/index.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - Companion - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Companion

-
object Companion
-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
hasSamsungPay -
Link copied to clipboard
-
-
-
- -
-
suspend fun hasSamsungPay(context: Context, supportedNetworks: List<PaymentMethodType>, isTesting: Boolean = false): Boolean
-
-
Although the library automatically hides Samsung Pay if no cards are supported, this shows if Samsung Pay is available for the specified card acquirers.
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-samsung-pay-config.html b/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-samsung-pay-config.html deleted file mode 100644 index f17ed75..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/-samsung-pay-config.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - SamsungPayConfig - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SamsungPayConfig

-
-
- -
-
fun SamsungPayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String)
-
-

Parameters

supportedNetworks

Supported card acquirers

merchantName

The displayed merchant name

-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/index.html b/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/index.html deleted file mode 100644 index b5b9496..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/-samsung-pay-config/index.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - SamsungPayConfig - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

SamsungPayConfig

-
open class SamsungPayConfig

Class for transaction configurations for Samsung Pay payments.

-
-
-
-
-

Constructors

-
-
-
-
SamsungPayConfig -
Link copied to clipboard
-
-
-
-
fun SamsungPayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String)
Creates a new SamsungPayConfig object.
-
-
-
-
-
-

Types

-
-
-
-
Companion -
Link copied to clipboard
-
-
-
- -
-
object Companion
-
-
-
-
-
-
-
-

Functions

-
-
-
-
equals -
Link copied to clipboard
-
-
-
- -
-
open operator fun equals(other: Any?): Boolean
-
-
-
-
-
-
- -
-
-
hashCode -
Link copied to clipboard
-
-
-
- -
-
open fun hashCode(): Int
-
-
-
-
-
-
- -
-
-
toString -
Link copied to clipboard
-
-
-
- -
-
open fun toString(): String
-
-
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/ch.datatrans.payment.paymentmethods/index.html b/docs/ch.datatrans.payment.paymentmethods/index.html deleted file mode 100644 index 6544254..0000000 --- a/docs/ch.datatrans.payment.paymentmethods/index.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - ch.datatrans.payment.paymentmethods - - - - - - - - - - - - - -
-
- -
-
-
-
-
- - -
- -
-

Package ch.datatrans.payment.paymentmethods

-
-
-
-
-

Types

-
-
-
-
Card -
Link copied to clipboard
-
-
-
- -
-
class Card(type: PaymentMethodType, number: String, expiryDate: CardExpiryDate, cvv: String?, cardholder: String?)
-
-
Use this class to process raw card data for payments.
-
-
-
-
- -
-
-
CardExpiryDate -
Link copied to clipboard
-
-
-
- -
-
class CardExpiryDate(month: Int, year: Int) : Serializable
-
-
Class to be used to represent the card expiry date (month and year).
-
-
-
-
- -
-
-
CardToken -
Link copied to clipboard
-
-
-
- -
-
open class CardToken : PaymentMethodToken
-
-
This class contains the token information about a credit or debit card registration from a previously completed transaction.
-
-
-
-
- -
-
-
GooglePayConfig -
Link copied to clipboard
-
-
-
- -
-
data class GooglePayConfig(supportedNetworks: List<PaymentMethodType>, merchantName: String, showLargeButton: Boolean)
-
-
Configuration object for Google Pay transactions.
-
-
-
-
- -
-
-
PaymentMethodToken -
Link copied to clipboard
-
-
-
- -
-
open class PaymentMethodToken(type: PaymentMethodType, token: String) : Serializable, Cloneable
-
-
This class is the base token class to gather token information and process recurring payments or fast checkouts with any payment method.
-
-
-
-
- -
-
-
PaymentMethodType -
Link copied to clipboard
-
-
-
- -
-
enum PaymentMethodType : Enum<PaymentMethodType>
-
-
The payment method used during the transaction.
-
-
-
-
- -
-
-
PayPalToken -
Link copied to clipboard
-
-
-
- -
-
class PayPalToken(token: String, payPalEmail: String?) : PaymentMethodToken
-
-
This class contains the token information about a PayPal registration from a previously completed transaction.
-
-
-
-
- -
-
-
PostFinanceCardToken -
Link copied to clipboard
-
-
-
- -
-
class PostFinanceCardToken(token: String, cardExpiryDate: CardExpiryDate?, maskedCardNumber: String?) : CardToken
-
-
This class contains the token information about a PostFinance Card registration from a previously completed transaction.
-
-
-
-
- -
-
-
RekaToken -
Link copied to clipboard
-
-
-
- -
-
class RekaToken(token: String, cardExpiryDate: CardExpiryDate, maskedCardNumber: String?) : CardToken
-
-
This class contains the token information about a Reka card registration from a previously completed transaction.
-
-
-
-
- -
-
-
SamsungPayConfig -
Link copied to clipboard
-
-
-
- -
-
open class SamsungPayConfig
-
-
Class for transaction configurations for Samsung Pay payments.
-
-
-
-
- -
-
-
SEPAToken -
Link copied to clipboard
-
-
-
- -
-
class SEPAToken(token: String) : PaymentMethodToken
-
-
This class contains the token information about a SEPA (ELV) registration from a previously completed transaction.
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/docs/index.html b/docs/index.html index 32111a4..e2d2d99 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,30 +2,18 @@ Datatrans Android SDK - - - - - - - - - - - - +
-
- +
- - -
+