csv = $data['csv'] ?? null; $model->json = $data['json'] ?? null; return $model; } private function __construct() { } public function getCsv(): ?string { return $this->csv; } public function getJson(): ?string { return $this->json; } }