public abstract class RecoveryInputData
extends java.lang.Object
implements android.os.Parcelable
Example of a transaction request: Transaction debit using ContactChip 3€
ITransactiontransaction = Transaction.getInstance(context);TransactionInputDatainputData =TransactionInputData.builder() .setTransactionType(TransactionTypes.SALE) .setPaymentMeans(Arrays.asList(PaymentMeans.CONTACT_CHIP)) .setAmount(newBigDecimal("3.0")) .setTipAmount(newBigDecimal("1.00")) .setSurchargeAmount(newBigDecimal("0.45")) .build();TransactionRequestrequest = transaction.start(inputData);
| Modifier and Type | Class and Description | 
|---|---|
static interface  | 
RecoveryInputData.Builder
Builder. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
static android.os.Parcelable.Creator<RecoveryInputData> | 
CREATOR  | 
| Constructor and Description | 
|---|
RecoveryInputData()  | 
| Modifier and Type | Method and Description | 
|---|---|
static RecoveryInputData.Builder | 
builder()  | 
static RecoveryInputData | 
create(int recoveryId)
Create a new RecoveryInputData instance with the specified id. 
 | 
abstract int | 
getRecoveryId()
Recovery Id. 
 | 
public static final android.os.Parcelable.Creator<RecoveryInputData> CREATOR
public abstract int getRecoveryId()
public static RecoveryInputData.Builder builder()
public static RecoveryInputData create(int recoveryId)
recoveryId -