get('type'); } public function getExportRowIndex(): int { return $this->get('exportRowIndex'); } public function getRowIndex(): int { return $this->get('rowIndex'); } public function getValidationField(): ?string { return $this->get('validationField'); } public function getValidationType(): ?string { return $this->get('validationType'); } /** * @return string[] */ public function getRow(): array { /** @var ?string[] $value */ $value = $this->get('row'); if ($value === null) { throw new LogicException(); } return $value; } public function getImportLink(): Link { /** @var ?Link $link */ $link = $this->getValueObject('import'); if ($link === null) { throw new LogicException(); } return $link; } }