1 | <?php |
||
15 | class Response |
||
16 | { |
||
17 | /** |
||
18 | * the response. |
||
19 | * |
||
20 | * @var array |
||
21 | */ |
||
22 | protected $response; |
||
23 | |||
24 | /** |
||
25 | * Response constructor. |
||
26 | * @param array response |
||
27 | */ |
||
28 | public function __construct($response) |
||
32 | |||
33 | /** |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function getCode() |
||
45 | |||
46 | /** |
||
47 | * @return mixed |
||
48 | */ |
||
49 | public function getBalance() |
||
58 | |||
59 | /** |
||
60 | * @return mixed |
||
61 | */ |
||
62 | public function getDescription() |
||
71 | |||
72 | /** |
||
73 | * @return mixed |
||
74 | */ |
||
75 | public function getMSISDN() |
||
84 | |||
85 | |||
86 | /** |
||
87 | * @return mixed |
||
88 | */ |
||
89 | public function getCorrelator() |
||
96 | |||
97 | /** |
||
98 | * @return mixed |
||
99 | */ |
||
100 | public function getMessageID() |
||
109 | |||
110 | /** |
||
111 | * @return mixed |
||
112 | */ |
||
113 | public function getSourceID() |
||
117 | |||
118 | |||
119 | } |
||
120 |