| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace ACES\Common\domain;
- class JosVoucherInfoGetResponse extends JosBaseResponse
- {
- private $response;
- /**
- * @return GetVoucherInfoRes
- */
- public function getResponse()
- {
- return $this->response;
- }
- /**
- * @param GetVoucherInfoRes|null $response
- */
- public function setResponse($response)
- {
- $this->response = $response;
- }
- }
|