feature/added shouldRaiseConsentChallenge method

This commit is contained in:
hongwei 2025-01-24 20:49:45 +08:00
parent 9d19d9c26f
commit 1beab56f5a

View File

@ -303,6 +303,19 @@ trait Connector extends MdcLoggable {
callContext: Option[CallContext]
): OBPReturnType[Box[AmountOfMoney]] =Future{(Failure(setUnimplementedError(nameOf(getChallengeThreshold _))), callContext)}
//TODO. WIP
def shouldRaiseConsentChallenge(
bankId: String,
accountId: String,
viewId: String,
consentRequestType: String,
userId: String,
username: String,
callContext: Option[CallContext]
): OBPReturnType[Box[(Boolean, String)]] = Future {
(Failure(setUnimplementedError(nameOf(shouldRaiseConsentChallenge _))), callContext)
}
def getPaymentLimit(
bankId: String,
accountId: String,