data; } /** * @param mixed $data * * @return ModelExtendDataEvent */ public function setData($data) { $this->data = $data; return $this; } /** * @return mixed */ public function getLocale() { return $this->locale; } /** * @param mixed $locale * * @return ModelExtendDataEvent */ public function setLocale($locale) { $this->locale = $locale; return $this; } /** * @return BaseApiModel */ public function getModel() { return $this->model; } /** * @param BaseApiModel $model * * @return ModelExtendDataEvent */ public function setModel($model) { $this->model = $model; return $this; } /** * @return mixed */ public function getExtendData() { return $this->extendedData; } /** * @param $key * @param $value * * @return $this */ public function setExtendDataKeyValue($key, $value) { $this->extendedData[$key] = $value; return $this; } }