| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- declare(strict_types=1);
- namespace Meramo\Chatbotui\Domain\Model;
- /**
- * This file is part of the "Chatbot UI" Extension for TYPO3 CMS.
- *
- * For the full copyright and license information, please read the
- * LICENSE.txt file that was distributed with this source code.
- *
- * (c) 2023 Meramo Developer <develop@meramo.de>, Meramo Verlag GmbH
- */
- /**
- * Terms to filter
- */
- class Terms extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
- {
- /**
- * Term type
- *
- * @var \Meramo\Chatbotui\Domain\Model\Type
- */
- protected $type = null;
- /**
- * Term category
- *
- * @var \Meramo\Chatbotui\Domain\Model\Category
- */
- protected $category = null;
- /**
- * Redirect page url
- *
- * @var \Meramo\Chatbotui\Domain\Model\Url
- */
- protected $url = null;
- /**
- * Returns the type
- *
- * @return \Meramo\Chatbotui\Domain\Model\Type $type
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * Sets the type
- *
- * @param \Meramo\Chatbotui\Domain\Model\Type $type
- * @return void
- */
- public function setType(\Meramo\Chatbotui\Domain\Model\Type $type)
- {
- $this->type = $type;
- }
- /**
- * Returns the category
- *
- * @return \Meramo\Chatbotui\Domain\Model\Category $category
- */
- public function getCategory()
- {
- return $this->category;
- }
- /**
- * Sets the category
- *
- * @param \Meramo\Chatbotui\Domain\Model\Category $category
- * @return void
- */
- public function setCategory(\Meramo\Chatbotui\Domain\Model\Category $category)
- {
- $this->category = $category;
- }
- /**
- * Returns the url
- *
- * @return \Meramo\Chatbotui\Domain\Model\Url $url
- */
- public function getUrl()
- {
- return $this->url;
- }
- /**
- * Sets the url
- *
- * @param \Meramo\Chatbotui\Domain\Model\Url $url
- * @return void
- */
- public function setUrl(\Meramo\Chatbotui\Domain\Model\Url $url)
- {
- $this->url = $url;
- }
- }
|