id = Uuid::v7(); } public function getId(): Uuid { return $this->id; } public function getType(): string { return $this->type; } public function setType(string $type): self { $this->type = $type; return $this; } public function getUrl(): string { return $this->url; } public function setUrl(string $url): self { $this->url = $url; return $this; } public function getLabel(): ?string { return $this->label; } public function setLabel(?string $label): self { $this->label = $label; return $this; } public function getPosition(): int { return $this->position; } public function setPosition(int $position): self { $this->position = $position; return $this; } public function getEmployee(): Employee { return $this->employee; } public function setEmployee(Employee $employee): self { $this->employee = $employee; return $this; } public function getReseller(): ?Reseller { return $this->employee->getReseller(); } }