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); + } +}