id; } /** * Get parent category. * * @return mixed * * @since 1.0.0 */ public function getParent() { return $this->parent; } /** * Set parent category. * * @param mixed $parent Parent category * * @return void * * @since 1.0.0 */ public function setParent($parent) : void { $this->parent = $parent; } /** * Get responsible. * * @return mixed * * @since 1.0.0 */ public function getResponsible() { return $this->responsible; } /** * Set responsible. * * @param mixed $responsible Responsible * * @return void * * @since 1.0.0 */ public function setResponsible($responsible) : void { $this->responsible = $responsible; } /** * Set deputy. * * @param mixed $deputy Deputy * * @return void * * @since 1.0.0 */ public function setDeputy($deputy) : void { $this->deputy = $deputy; } /** * Get deputy. * * @return mixed * * @since 1.0.0 */ public function getDeputy() { return $this->deputy; } /** * Get title. * * @return string * * @since 1.0.0 */ public function getTitle() : string { return $this->title; } /** * Set title. * * @param string $title Title * * @return void * * @since 1.0.0 */ public function setTitle(string $title) : void { $this->title = $title; } /** * Get description * * @return string * * @since 1.0.0 */ public function getDescription() : string { return $this->description; } /** * Get raw description. * * @return string * * @since 1.0.0 */ public function getDescriptionRaw() : string { return $this->descriptionRaw; } /** * Set raw description * * @param string $description Description * * @return void * * @since 1.0.0 */ public function setDescriptionRaw(string $description) : void { $this->descriptionRaw = $description; } }