updated stubs

This commit is contained in:
Ganesh Hegde
2013-05-27 11:53:45 +05:30
parent 5b32783208
commit 11f91adee4
28 changed files with 1744 additions and 1567 deletions

View File

@@ -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;
}
}
}