initProperty( 'host', models\LAN\LanHost::class); } /** * @return string */ public function getId() { return $this->id; } /** * @return string */ public function getMac() { return $this->mac; } /** * @return string */ public function getComment() { return $this->comment; } /** * @param string $comment */ public function setComment($comment) { $this->comment = $comment; } /** * @return string * @see alphayax\freebox\api\v3\symbols\WiFi\MacFilter\Type */ public function getType() { return $this->type; } /** * @param string $type * @see alphayax\freebox\api\v3\symbols\WiFi\MacFilter\Type */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getHostname() { return $this->hostname; } /** * @return models\LAN\LanHost */ public function getHost() { return $this->host; } }