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