Package com.six.timapi
Class ClientIdentificationResponse
- java.lang.Object
-
- com.six.timapi.ClientIdentificationResponse
-
public class ClientIdentificationResponse extends Object
Contains the result of a client identification finished after callingTerminal.clientIdentification()
orTerminal.clientIdentificationAsync()
. Immutable class.
-
-
Constructor Summary
Constructors Constructor Description ClientIdentificationResponse(Amount amountSaldo, TransactionInformation transactionInformation, CardData cardData)
Create transaction response.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Amount
getAmountSaldo()
Saldo amount if present.CardData
getCardData()
Information about payment card used by the cardholder if present.TransactionInformation
getTransactionInformation()
Information about completed transaction.String
toString()
String representation for debugging purpose.
-
-
-
Constructor Detail
-
ClientIdentificationResponse
public ClientIdentificationResponse(Amount amountSaldo, TransactionInformation transactionInformation, CardData cardData)
Create transaction response.
-
-
Method Detail
-
getAmountSaldo
public Amount getAmountSaldo()
Saldo amount if present.
-
getTransactionInformation
public TransactionInformation getTransactionInformation()
Information about completed transaction.
-
getCardData
public CardData getCardData()
Information about payment card used by the cardholder if present.
-
-