Package com.creditcall.chipdnamobile
Interface IVoiceReferralListener
-
public interface IVoiceReferralListenerThis interface is used to receive notification when voice referral is required during a transaction. Before callingChipDnaMobile.startTransaction(Parameters)register this listener usingChipDnaMobile.addVoiceReferralListener(IVoiceReferralListener).- Author:
- Creditcall Ltd.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonVoiceReferral(Parameters parameters)Invoked when voice referral is required.
-
-
-
Method Detail
-
onVoiceReferral
void onVoiceReferral(Parameters parameters)
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.
-
-