type = $type->value; $this->event = $event->value; if($data instanceof ElNotification) { $this->data = $data->toArray(); }else{ $this->data = (array)$data; } } public function toJson(): string { return json_encode([ 'type' => $this->type, 'event' => $this->event, 'data' => $this->data, ], JSON_UNESCAPED_UNICODE); } }