public function getEndpoint()
 {
     return parent::getEndpoint() . '/charges/' . $this->getTransactionReference();
 }
 public function getEndpoint()
 {
     return parent::getEndpoint() . '/pay';
 }
Ejemplo n.º 3
0
 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();
 }
Ejemplo n.º 6
0
 protected function getEndpoint()
 {
     return parent::getEndpoint() . '/paymentrequests';
 }
Ejemplo n.º 7
0
 public function getEndpoint()
 {
     return parent::getEndpoint();
 }
Ejemplo n.º 8
0
 public function getEndpoint()
 {
     return parent::getEndpoint() . '/invoice';
 }
Ejemplo n.º 9
0
 /**
  * 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}";
 }
Ejemplo n.º 10
0
 /**
  * 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}";
 }