, Meramo Verlag GmbH */ /** * Chatbot Term Type */ class Type extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity { /** * type * * @var string * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $type = ''; /** * Returns the type * * @return string $type */ public function getType() { return $this->type; } /** * Sets the type * * @param string $type * @return void */ public function setType(string $type) { $this->type = $type; } }