* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Zone { /** * @var string */ private $name; /** * @var string */ private $type; /** * @return string */ public function getName() { return $this->name; } /** * @param string $name * @return void */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getType() { return $this->type; } /** * @param string $type * @return void */ public function setType($type) { $this->type = $type; } }