JosVoucherInfoGetResponse.php 408 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace ACES\Common\domain;
  3. class JosVoucherInfoGetResponse extends JosBaseResponse
  4. {
  5. private $response;
  6. /**
  7. * @return GetVoucherInfoRes
  8. */
  9. public function getResponse()
  10. {
  11. return $this->response;
  12. }
  13. /**
  14. * @param GetVoucherInfoRes|null $response
  15. */
  16. public function setResponse($response)
  17. {
  18. $this->response = $response;
  19. }
  20. }