id = Uuid::v7(); } public function getId(): Uuid { return $this->id; } public function getHostname(): string { return $this->hostname; } public function setHostname(string $hostname): self { $this->hostname = $hostname; return $this; } public function getType(): string { return $this->type; } public function setType(string $type): self { $this->type = $type; return $this; } public function getStatus(): string { return $this->status; } public function setStatus(string $status): self { $this->status = $status; return $this; } public function getTlsStatus(): string { return $this->tlsStatus; } public function setTlsStatus(string $tlsStatus): self { $this->tlsStatus = $tlsStatus; return $this; } public function getVerificationCheckedAt(): ?\DateTimeImmutable { return $this->verificationCheckedAt; } public function setVerificationCheckedAt(?\DateTimeImmutable $verificationCheckedAt): self { $this->verificationCheckedAt = $verificationCheckedAt; return $this; } public function getCompany(): Company { return $this->company; } public function setCompany(Company $company): self { $this->company = $company; return $this; } public function getReseller(): ?Reseller { return $this->company->getReseller(); } }