app_id . '_' . $this->request_id); } public function getDataValue($key, $defaultValue = null) { $data = $this->getData(); return $data[$key] ?: $defaultValue; } public function getData() { $data = $this->request_data['data'] ?: null; if ($data) { return json_decode($data, true); } return []; } }