id; } /** * @return int|null */ public function getStepId(): ?int { return $this->stepId; } /** * @param int $stepId * * @return self */ public function setStepId(int $stepId): self { $this->stepId = $stepId; return $this; } /** * @return string|null */ public function getStepName(): ?string { return $this->stepName; } /** * @param string $stepName * * @return self */ public function setStepName(string $stepName): self { $this->stepName = $stepName; return $this; } /** * @return WorkflowProjectOptions|null */ public function getWorkflowProjectOption(): ?WorkflowProjectOptions { return $this->workflowProjectOption; } /** * @param WorkflowProjectOptions|null $workflowProjectOption * * @return self */ public function setWorkflowProjectOption(?WorkflowProjectOptions $workflowProjectOption): self { $this->workflowProjectOption = $workflowProjectOption; return $this; } /** * @return VersionExport|null */ public function getVersionExport(): ?VersionExport { return $this->versionExport; } /** * @param VersionExport|null $versionExport * * @return self */ public function setVersionExport(?VersionExport $versionExport): self { $this->versionExport = $versionExport; return $this; } /** * @return \DateTimeInterface|null */ public function getDateFin(): ?\DateTimeInterface { return $this->dateFin; } /** * @param \DateTimeInterface $dateFin * * @return self */ public function setDateFin(\DateTimeInterface $dateFin): self { $this->dateFin = $dateFin; return $this; } public function getUsers(): ?array { return $this->users; } public function setUsers(?array $users): self { $this->users = $users; return $this; } }