/**
  * @return mixed
  */
 public function getMerchantInformation()
 {
     if ($this->merchantInformation == null) {
         $m = new MerchantInformation($this->transactionManager);
         $m->getDataByTransaction(TransactionType::RecurringBill, $this->lastRecurringBillResponse->getRecurringBillId());
         $this->merchantInformation = $m;
     }
     return $this->merchantInformation;
 }
 /**
  * @return mixed
  */
 public function getMerchantInformation()
 {
     if ($this->merchantInformation == null) {
         $m = new MerchantInformation($this->transactionManager);
         $m->getDataByTransaction(TransactionType::Verify, $this->verifyResponse->getVerifyId());
         $this->merchantInformation = $m;
     }
     return $this->merchantInformation;
 }
 /**
  * @return mixed
  */
 public function getMerchantInformation()
 {
     if ($this->merchantInformation == null) {
         $m = new MerchantInformation($this->transactionManager);
         $m->getDataByTransaction(TransactionType::Capture, $this->lastCaptureResponse->getTransactionId());
         $this->merchantInformation = $m;
     }
     return $this->merchantInformation;
 }