/**
  * Returns the FORMATTED data harvested from the reply, or false if it is not set.
  * @return mixed An array of returned data, or false.
  */
 public function getTransactionData()
 {
     if ($this->transaction_response && $this->transaction_response->getData()) {
         return $this->transaction_response->getData();
     }
     return false;
 }