Package com.wallee.android.till.sdk.data
Class CancelationResult
- java.lang.Object
-
- com.wallee.android.till.sdk.data.CancelationResult
-
public final class CancelationResult extends Object
The cancelation result data forApiClient.cancelLastTransactionOperation()
API call.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CancelationResult.Builder
-
Constructor Summary
Constructors Constructor Description CancelationResult(State state, ResultCode resultCode, String terminalId, String sequenceCount, String cancelledSequenceCount, String transactionAmount, String transactionCurrency, String acquirerId, String cardNumber, String cardSeqNumber, String cardExpDate, String cardAppLabel, String cardAppId, String transactionTime, List<Receipt> receipts)
CancelationResult(State state, ResultCode resultCode, String terminalId, String sequenceCount, String cancelledSequenceCount, String transactionTime, List<Receipt> receipts)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAcquirerId()
String
getCancelledSequenceCount()
String
getCardAppId()
String
getCardAppLabel()
String
getCardExpDate()
String
getCardNumber()
String
getCardSeqNumber()
Date
getParsedTransactionTime()
List<Receipt>
getReceipts()
ResultCode
getResultCode()
String
getSequenceCount()
State
getState()
String
getTerminalId()
String
getTransactionAmount()
String
getTransactionCurrency()
String
getTransactionTime()
-
-
-
Constructor Detail
-
CancelationResult
public CancelationResult(@NonNull State state, @NonNull ResultCode resultCode, @Nullable String terminalId, @Nullable String sequenceCount, @Nullable String cancelledSequenceCount, @Nullable String transactionTime, @NonNull List<Receipt> receipts)
-
CancelationResult
public CancelationResult(@NonNull State state, @NonNull ResultCode resultCode, @Nullable String terminalId, @Nullable String sequenceCount, @Nullable String cancelledSequenceCount, @Nullable String transactionAmount, @Nullable String transactionCurrency, @Nullable String acquirerId, @Nullable String cardNumber, @Nullable String cardSeqNumber, @Nullable String cardExpDate, @Nullable String cardAppLabel, @Nullable String cardAppId, @Nullable String transactionTime, @NonNull List<Receipt> receipts)
-
-
Method Detail
-
getState
@NonNull public State getState()
-
getResultCode
@NonNull public ResultCode getResultCode()
-
getTerminalId
@Nullable public String getTerminalId()
-
getSequenceCount
@Nullable public String getSequenceCount()
-
getCancelledSequenceCount
@Nullable public String getCancelledSequenceCount()
-
getTransactionAmount
@Nullable public String getTransactionAmount()
-
getTransactionCurrency
@Nullable public String getTransactionCurrency()
-
getAcquirerId
@Nullable public String getAcquirerId()
-
getCardNumber
@Nullable public String getCardNumber()
-
getCardSeqNumber
@Nullable public String getCardSeqNumber()
-
getCardExpDate
@Nullable public String getCardExpDate()
-
getCardAppLabel
@Nullable public String getCardAppLabel()
-
getCardAppId
@Nullable public String getCardAppId()
-
getTransactionTime
@Nullable public String getTransactionTime()
-
getParsedTransactionTime
public Date getParsedTransactionTime() throws ParseException
- Throws:
ParseException
-
-