inputOptionsDAO->getIntegration(); } public function isIntegration(string $integrationName): bool { return $this->getIntegrationName() === $integrationName; } public function getFromDateTime(): ?\DateTimeInterface { return $this->inputOptionsDAO->getStartDateTime(); } public function getToDateTime(): ?\DateTimeInterface { return $this->inputOptionsDAO->getEndDateTime(); } public function getInputOptions(): InputOptionsDAO { return $this->inputOptionsDAO; } }