errCode = $errCode; $this->msg = $msg; $this->data = $data; } /** * @return int */ public function getCode() { return $this->errCode; } /** * @return mixed if status = 'error' */ public function getMsg() { return $this->msg; } /** * @return mixed if status = 'ok' */ public function getData() { return $this->data; } }