public function getEndpoint() { return parent::getEndpoint() . '/charges/' . $this->getTransactionReference(); }
public function getEndpoint() { return parent::getEndpoint() . '/pay'; }
public function getEndpoint() { $endpoint = parent::getEndpoint(); return "{$endpoint}/{$this->action}"; }
public function getEndpoint() { return parent::getEndpoint() . '/tokens/payment'; }
public function getEndpoint() { return parent::getEndpoint() . '/paymentrequests/' . $this->getTransactionReference(); }
protected function getEndpoint() { return parent::getEndpoint() . '/paymentrequests'; }
public function getEndpoint() { return parent::getEndpoint(); }
public function getEndpoint() { return parent::getEndpoint() . '/invoice'; }
/** * Get the endpoint for the request. * * @return string */ public function getEndpoint() { $endpoint = parent::getEndpoint(); $action = $this->getPaymentType() == 'invoice' ? $this->invoiceAction : $this->defaultAction; return "{$endpoint}/{$this->namespace}/{$action}"; }
/** * Get the endpoint URL for the request. * * @return string */ public function getEndpoint() { $endpoint = parent::getEndpoint(); $hash = $this->getHash(); return "{$endpoint}/{$this->namespace}/{$hash}/{$this->action}"; }