| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <?php
- #declare(strict_types=1);
- namespace Meramo\Begriffmgt\Domain\Model;
- use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
- /**
- * This file is part of the "Chatbot Term Management" 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 <development@meramo.de>, Meramo Verlag GmbH
- */
- /**
- * Table is used to manage chatbot terms
- */
- class Term extends AbstractEntity
- {
- /**
- * chatbotType
- *
- * @var string
- */
- protected $type = '';
- /**
- * chatbotCategory
- *
- * @var string
- */
- protected $category = '';
- /**
- * chatbotTerms
- *
- * @var string
- */
- protected $terms = '';
- /**
- * chatbotUrl
- *
- * @var string
- */
- protected $url = '';
- /**
- * Returns the chatbotType
- *
- * @return string
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * Sets the chatbotType
- *
- * @param string $type
- * @return void
- */
- public function setType(int $type)
- {
- $this->type = $type;
- }
- /**
- * Returns the category
- *
- * @return string
- */
- public function getCategory()
- {
- return $this->category;
- }
- /**
- * Sets the category
- *
- * @param string $category
- * @return void
- */
- public function setCategory(int $category)
- {
- $this->category = $category;
- }
- /**
- * Returns Terms
- *
- * @return string
- */
- public function getTerms()
- {
- return $this->terms;
- }
- /**
- * Sets the chatbotTerms
- *
- * @param string $terms
- * @return void
- */
- public function setTerms(string $terms)
- {
- $this->terms = $terms;
- }
- /**
- * Returns the url
- *
- * @return string
- */
- public function getUrl()
- {
- return $this->url;
- }
- /**
- * Sets the chatbot_url
- *
- * @param string $Url
- * @return void
- */
- public function setUrl(string $url)
- {
- $this->url = $url;
- }
- }
|