*/ public function toArray(): array { $data = ['status' => $this->status->value]; if ($this->error !== null) { $data['error'] = $this->error->value; } if ($this->message !== null) { $data['message'] = $this->message; } return $data; } }