Esempio n. 1
0
 public function performVerifyTransaction($request)
 {
     $json = json_encode($this->object_unset_nulls(null));
     curl_setopt($request, CURLOPT_POSTFIELDS, $json);
     $result = $this->doPost($request, $this->getUrl());
     $response = VerifyResponseInformation::fromArray($result);
     return $response;
 }
 /**
  * Perform a new query that retrieves you the list of Verify Information.
  *
  * @return an VerfyResponseInformation list object.
  * @see {@link com.payhub.ws.api.VerfyResponseInformation};
  */
 public function getAllVerifyInformation()
 {
     $url = $this->getUrl() . Verify::$VERIFY_ID_LINK;
     $request = $this->setHeadersGet($url, $this->_oauthToken);
     $result = $this->doGet($request);
     if (array_key_exists('_embedded', $result)) {
         foreach ($result['_embedded']['verifications'] as $verifications) {
             $response_tmp = VerifyResponseInformation::fromArray($verifications);
             $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;
     }
 }
Esempio n. 3
0
 /**
  * Perform a new query that retrieves you the list of Verify Information.
  *
  * @return an VerfyResponseInformation list object.
  * @see {@link com.payhub.ws.api.VerfyResponseInformation};
  */
 public function getAllVerifyInformation()
 {
     $url = $this->getUrl() . Verify::$VERIFY_ID_LINK;
     $request = $this->setHeadersGet($url, $this->_oauthToken);
     $result = $this->doGet($request);
     foreach ($result['_embedded']['verifications'] as $verifications) {
         $response_tmp = VerifyResponseInformation::fromArray($verifications);
         $response_tmp->setTransactionManager($this);
         $response[] = $response_tmp;
     }
     return $response;
 }