Example #1
0
 /**
  * @param string $paymentId
  * @return Message\Response
  */
 public function paymentStatus($paymentId)
 {
     $data = ['merchantId' => $this->config->getMerchantId(), 'payId' => $paymentId, 'dttm' => $this->formatDatetime()];
     return $this->processRequest(Message\Request::paymentStatus($data));
 }