Card Token Transaction
data class CardTokenTransaction(val amount: Double, val description: String, val payer: Payer, val cardToken: String, val notifications: Notifications?) : Parcelable
Class responsible for storing data about credit card token transaction.
Parameters
amount
amount of money customer will have to pay
description
transaction description visible to customer
payer
information about customer
card Token
credit card token
notifications
notification information including email and url
Constructors
Link copied to clipboard
fun CardTokenTransaction(amount: Double, description: String, payer: Payer, cardToken: String, notifications: Notifications?)