id; } /** * @return array|string[] */ public function getLabel(): array { return $this->label; } /** * @param array|string[] $label * @return UserJob */ public function setLabel(array $label): UserJob { $this->label = $label; return $this; } /** * @return bool */ public function isActive(): bool { return $this->active; } /** * @param bool $active * @return UserJob */ public function setActive(bool $active): UserJob { $this->active = $active; return $this; } }