, 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; } }