JosSecretApiReportGetResponse.php 644 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace ACES\Common\domain;
  3. class JosSecretApiReportGetResponse
  4. {
  5. private $errorMsg;
  6. private $errorCode;
  7. /**
  8. * @return mixed
  9. */
  10. public function getErrorMsg()
  11. {
  12. return $this->errorMsg;
  13. }
  14. /**
  15. * @param mixed $errorMsg
  16. */
  17. public function setErrorMsg($errorMsg)
  18. {
  19. $this->errorMsg = $errorMsg;
  20. }
  21. /**
  22. * @return mixed
  23. */
  24. public function getErrorCode()
  25. {
  26. return $this->errorCode;
  27. }
  28. /**
  29. * @param mixed $errorCode
  30. */
  31. public function setErrorCode($errorCode)
  32. {
  33. $this->errorCode = $errorCode;
  34. }
  35. }