| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace ACES\Common\domain;
- class JosSecretApiReportGetResponse
- {
- private $errorMsg;
- private $errorCode;
- /**
- * @return mixed
- */
- public function getErrorMsg()
- {
- return $this->errorMsg;
- }
- /**
- * @param mixed $errorMsg
- */
- public function setErrorMsg($errorMsg)
- {
- $this->errorMsg = $errorMsg;
- }
- /**
- * @return mixed
- */
- public function getErrorCode()
- {
- return $this->errorCode;
- }
- /**
- * @param mixed $errorCode
- */
- public function setErrorCode($errorCode)
- {
- $this->errorCode = $errorCode;
- }
- }
|