id; } public function getClient(): ?Member { return $this->client; } public function setClient(?Member $client): static { $this->client = $client; return $this; } public function getCaseWorker(): ?User { return $this->caseWorker; } public function setCaseWorker(?User $caseWorker): static { $this->caseWorker = $caseWorker; return $this; } public function getClientSigned(): ?\DateTimeInterface { return $this->clientSigned; } public function setClientSigned(?\DateTimeInterface $clientSigned): static { $this->clientSigned = $clientSigned; return $this; } public function getWorkerSigned(): ?\DateTimeInterface { return $this->workerSigned; } public function setWorkerSigned(?\DateTimeInterface $workerSigned): static { $this->workerSigned = $workerSigned; return $this; } public function getDocument(): ?CompanyDocument { return $this->document; } public function setDocument(?CompanyDocument $document): static { $this->document = $document; return $this; } public function getClientSignature(): ?array { return $this->clientSignature; } public function setClientSignature(?array $clientSignature): static { $this->clientSignature = $clientSignature; return $this; } public function getWorkerSignature(): ?array { return $this->workerSignature; } public function setWorkerSignature(?array $workerSignature): static { $this->workerSignature = $workerSignature; return $this; } public function getDocData(): ?string { return $this->docData; } public function setDocData(?string $docData): static { $this->docData = $docData; return $this; } }