Package com.creditcall.chipdnamobile
Interface IPartialApprovalListener
-
public interface IPartialApprovalListenerThis interface is used to receive notification when a partial approval decision is required during a transaction. Before callingChipDnaMobile.startTransaction(Parameters)register this listener usingChipDnaMobile.addPartialApprovalListener(IPartialApprovalListener).- Author:
- Creditcall Ltd.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonPartialApproval(Parameters parameters)Invoked when a partial approval decision is required.
-
-
-
Method Detail
-
onPartialApproval
void onPartialApproval(Parameters parameters)
Invoked when a partial approval decision is required.- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.ResponseRequiredindicating whether the integrating application needs to respond. When the value isParameterValues.TRUEa call toChipDnaMobile.continuePartialApproval(Parameters)is required for the transaction to continue. When the value isParameterValues.FALSE, this is just a notification and no action is needed.ParameterKeys.OperatorPinRequiredcontains valueParameterValues.TRUEif the Operator PIN is required.ParameterKeys.AmountOnlineAuthorizedcontains the partial amount authorized online.
-
-