Package com.creditcall.chipdnamobile
Interface IVoiceReferralListener
public interface IVoiceReferralListener
This interface is used to receive notification when voice referral is required during a transaction.
Before calling
ChipDnaMobile.startTransaction(Parameters) register this listener using ChipDnaMobile.addVoiceReferralListener(IVoiceReferralListener).- Author:
- Creditcall Ltd.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonVoiceReferral(Parameters parameters) Invoked when voice referral is required.
-
Method Details
-
onVoiceReferral
Invoked when voice referral is required.- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.ResponseRequiredindicating whether the integrating application needs to respond. When the value isParameterValues.TRUEa call toChipDnaMobile.continueVoiceReferral(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.ReferralNumberThe referral telephone number.
-