/**
  * Perform a new query that retrieves you the list of Captures Information.
  *
  * @return an LastCaptureResponseInformation list object.
  * @see {@link com.payhub.ws.api.CaptureResponseInformation};
  */
 public function getAllCaptureInformation()
 {
     $url = $this->getUrl() . Capture::$CAPTURE_ID_LINK;
     $request = $this->setHeadersGet($url, $this->_oauthToken);
     $result = $this->doGet($request);
     if (array_key_exists('_embedded', $result)) {
         foreach ($result['_embedded']['captures'] as $captures) {
             $response_tmp = CaptureResponseInformation::fromArray($captures);
             $response_tmp->setTransactionManager($this);
             $response[] = $response_tmp;
         }
         return $response;
     } else {
         $errors_tmp = new Errors();
         foreach ($result as $errorData) {
             $errors_tmp = Errors::fromArray($errorData);
         }
         $errors[] = $errors_tmp;
         return $errors;
     }
 }
Example #2
0
 public function doCapture($request)
 {
     $json = json_encode($this->object_unset_nulls(null));
     curl_setopt($request, CURLOPT_POSTFIELDS, $json);
     $result = $this->doPost($request, $this->getUrl());
     $response = CaptureResponseInformation::fromArray($result);
     return $response;
 }
 /**
  * Perform a new query that retrieves you the list of Captures Information.
  *
  * @return an LastCaptureResponseInformation list object.
  * @see {@link com.payhub.ws.api.CaptureResponseInformation};
  */
 public function getAllCaptureInformation()
 {
     $url = $this->getUrl() . Capture::$CAPTURE_ID_LINK;
     $request = $this->setHeadersGet($url, $this->_oauthToken);
     $result = $this->doGet($request);
     foreach ($result['_embedded']['captures'] as $captures) {
         $response_tmp = CaptureResponseInformation::fromArray($captures);
         $response_tmp->setTransactionManager($this);
         $response[] = $response_tmp;
     }
     return $response;
 }