forked from LiveCarta/PayPal-PHP-SDK
updated stubs
This commit is contained in:
@@ -1,44 +1,38 @@
|
||||
<?php
|
||||
|
||||
<?php
|
||||
namespace PayPal\Api;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
class RedirectUrls extends Resource {
|
||||
|
||||
|
||||
class RedirectUrls extends \PPModel {
|
||||
/**
|
||||
* Setter for return_url
|
||||
* Url where the payer would be redirected to after approving the payment.
|
||||
* @param string $return_url
|
||||
*/
|
||||
public function setReturn_url($return_url) {
|
||||
*/
|
||||
public function setReturnUrl($return_url) {
|
||||
$this->return_url = $return_url;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for return_url
|
||||
* Url where the payer would be redirected to after approving the payment.
|
||||
* @return string
|
||||
*/
|
||||
public function getReturn_url() {
|
||||
*/
|
||||
public function getReturnUrl() {
|
||||
return $this->return_url;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Setter for cancel_url
|
||||
* Url where the payer would be redirected to after canceling the payment.
|
||||
* @param string $cancel_url
|
||||
*/
|
||||
public function setCancel_url($cancel_url) {
|
||||
*/
|
||||
public function setCancelUrl($cancel_url) {
|
||||
$this->cancel_url = $cancel_url;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for cancel_url
|
||||
* Url where the payer would be redirected to after canceling the payment.
|
||||
* @return string
|
||||
*/
|
||||
public function getCancel_url() {
|
||||
*/
|
||||
public function getCancelUrl() {
|
||||
return $this->cancel_url;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user