/**
  * @return mixed
  */
 public function getCustomerInformation()
 {
     if ($this->customerInformation == null) {
         $c = new CustomerInformation($this->transactionManager);
         $c->setUrl($this->transactionManager->getUrl() . "verify/");
         $c->getDataByTransaction(TransactionType::Verify, $this->verifyResponse->getVerifyId());
         $this->customerInformation = $c;
     }
     return $this->customerInformation;
 }
 /**
  * @return mixed
  */
 public function getCustomerInformation()
 {
     if ($this->customerInformation == null) {
         $c = new CustomerInformation($this->transactionManager);
         $c->setUrl($this->transactionManager->getUrl() . "recurring-bill/");
         $c->getDataByTransaction(TransactionType::RecurringBill, $this->lastRecurringBillResponse->getRecurringBillId());
         $this->customerInformation = $c;
     }
     return $this->customerInformation;
 }