id; } public function getName(): ?string { return $this->name; } public function setName(?string $name): self { $this->name = $name; return $this; } public function getGroupId(): ?int { return $this->groupId; } public function setGroupId(?int $groupId): self { $this->groupId = $groupId; return $this; } public function getGroupName(): ?string { return $this->groupName; } public function setGroupName(?string $groupName): self { $this->groupName = $groupName; return $this; } public function getDoctCount(): ?int { return $this->doctCount; } public function setDoctCount(?int $doctCount): self { $this->doctCount = $doctCount; return $this; } public function getViewInWeb(): ?bool { return $this->viewInWeb; } public function setViewInWeb(bool $viewInWeb): self { $this->viewInWeb = $viewInWeb; return $this; } public function toArray() { return get_object_vars($this); } }