* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Callback { /** * @var string */ private $url; /** * @var string */ private $method; /** * @return string */ public function getUrl() { return $this->url; } /** * @param string $url * @return void */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getMethod() { return $this->method; } /** * @param string $method * @return void */ public function setMethod($method) { $this->method = $method; } }