id; } public function getName(): ?string { return $this->name; } public function setName(string $name): static { $this->name = $name; return $this; } public function getOwnerRole(): ?RoleEnum { return $this->ownerRole; } public function setOwnerRole(RoleEnum $ownerRole): static { $this->ownerRole = $ownerRole; return $this; } }