예제 #1
0
 /**
  * Obtain all PaymentForward resources for the provided token.
  *
  * @deprecated since version 1.2. Use PaymentForwardClient.
  * @param array $params Parameters. Options: token
  * @param ApiContext $apiContext is the APIContext for this call. It can be used to pass dynamic configuration and credentials.
  * @param BlockCypherRestCall $restCall is the Rest Call Service that is used to make rest calls
  * @return PaymentForward[]
  */
 public static function getAll($params = array(), $apiContext = null, $restCall = null)
 {
     ArgumentGetParamsValidator::validate($params, 'params');
     $allowedParams = array('token' => 1);
     $params = ArgumentGetParamsValidator::sanitize($params, $allowedParams);
     $payLoad = "";
     $chainUrlPrefix = self::getChainUrlPrefix($apiContext);
     $json = self::executeCall("{$chainUrlPrefix}/payments?" . http_build_query($params), "GET", $payLoad, null, $apiContext, $restCall);
     return PaymentForward::getList($json);
 }
 /**
  * Obtain multiple PaymentForwards resources for the given identifiers.
  *
  * @param string[] $array
  * @param array $params Parameters
  * @param ApiContext $apiContext is the APIContext for this call. It can be used to pass dynamic configuration and credentials.
  * @param BlockCypherRestCall $restCall is the Rest Call Service that is used to make rest calls
  * @return PaymentForward[]
  */
 public function getMultiple($array, $params = array(), $apiContext = null, $restCall = null)
 {
     ArgumentArrayValidator::validate($array, 'array');
     ArgumentGetParamsValidator::validate($params, 'params');
     $allowedParams = array('token' => 1);
     $params = ArgumentGetParamsValidator::sanitize($params, $allowedParams);
     $paymentForwardList = implode(";", $array);
     $payLoad = "";
     $chainUrlPrefix = $this->getChainUrlPrefix($apiContext);
     $json = $this->executeCall("{$chainUrlPrefix}/payments/{$paymentForwardList}?" . http_build_query($params), "GET", $payLoad, null, $apiContext, $restCall);
     return PaymentForward::getList($json);
 }