1 | <?php |
||
25 | abstract class BaseResponse |
||
26 | { |
||
27 | /** |
||
28 | * @var \SimpleXMLElement |
||
29 | */ |
||
30 | protected $rawXml; |
||
31 | |||
32 | /** |
||
33 | * BaseResponse constructor. |
||
34 | * |
||
35 | * @param \SimpleXMLElement $xml |
||
36 | */ |
||
37 | public function __construct(\SimpleXMLElement $xml) |
||
41 | |||
42 | /** |
||
43 | * @return \SimpleXMLElement |
||
44 | */ |
||
45 | public function getRawXml() |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getReturnCode() |
||
57 | |||
58 | /** |
||
59 | * @return string |
||
60 | */ |
||
61 | public function getMessageKey() |
||
65 | |||
66 | /** |
||
67 | * @return string |
||
68 | */ |
||
69 | public function getMessage() |
||
73 | } |
||
74 |