| 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 ChatbotTerm extends AbstractEntity
- {
- /**
- * chatbotType
- *
- * @var int
- */
- protected $chatbot_type = 0;
- /**
- * chatbotCategory
- *
- * @var int
- */
- protected $chatbot_category = 0;
- /**
- * chatbotTerms
- *
- * @var string
- */
- protected $chatbot_terms = '';
- /**
- * chatbotUrl
- *
- * @var string
- */
- protected $chatbot_url = '';
- /**
- * Returns the chatbotType
- *
- * @return int
- */
- public function getChatbotType()
- {
- return $this->chatbot_type;
- }
- /**
- * Sets the chatbotType
- *
- * @param int $chatbotType
- * @return void
- */
- public function setChatbotType(int $chatbot_type)
- {
- $this->chatbot_type = $chatbot_type;
- }
- /**
- * Returns the chatbot_category
- *
- * @return int
- */
- public function getChatbotCategory()
- {
- return $this->chatbot_category;
- }
- /**
- * Sets the chatbot_category
- *
- * @param int $chatbot_category
- * @return void
- */
- public function setChatbotCategory(int $chatbot_category)
- {
- $this->chatbot_category = $chatbot_category;
- }
- /**
- * Returns the chatbotTerms
- *
- * @return string
- */
- public function getChatbotTerms()
- {
- return $this->chatbot_terms;
- }
- /**
- * Sets the chatbotTerms
- *
- * @param string $chatbot_terms
- * @return void
- */
- public function setChatbotTerms(string $chatbot_terms)
- {
- $this->chatbot_terms = $chatbot_terms;
- }
- /**
- * Returns the chatbot_url
- *
- * @return string
- */
- public function getChatbotUrl()
- {
- return $this->chatbot_url;
- }
- /**
- * Sets the chatbot_url
- *
- * @param string $chatbotUrl
- * @return void
- */
- public function setChatbotUrl(string $chatbot_url)
- {
- $this->chatbot_url = $chatbot_url;
- }
- }
|