This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/RedirectUrls.php

44 lines
636 B
PHP

<?php
namespace PayPal\Api;
/**
*
*/
class RedirectUrls extends Resource {
/**
* Setter for return_url
* @param string $return_url
*/
public function setReturn_url($return_url) {
$this->return_url = $return_url;
}
/**
* Getter for return_url
* @return string
*/
public function getReturn_url() {
return $this->return_url;
}
/**
* Setter for cancel_url
* @param string $cancel_url
*/
public function setCancel_url($cancel_url) {
$this->cancel_url = $cancel_url;
}
/**
* Getter for cancel_url
* @return string
*/
public function getCancel_url() {
return $this->cancel_url;
}
}