From b6be85dc1a3993b2c901520f19e90575427cff1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?CZ=C3=96VEK=20Andr=C3=A1s?= Date: Thu, 25 Jan 2018 23:13:44 +0100 Subject: [PATCH] Add DecryptPaymentDataRequest --- src/DecryptPaymentDataRequest.php | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/DecryptPaymentDataRequest.php diff --git a/src/DecryptPaymentDataRequest.php b/src/DecryptPaymentDataRequest.php new file mode 100644 index 0000000..4778790 --- /dev/null +++ b/src/DecryptPaymentDataRequest.php @@ -0,0 +1,39 @@ +opaqueData = $opaqueData; + $this->refId = $refId; + $this->callId = $callId; + } + + protected function attachData(RequestInterface $request) + { + $request->addDataType($this->opaqueData); + $request->addData('refId', $this->refId); + $request->addData('callId', $this->callId); + } +}