1 | <?php |
||
5 | class CheckVatResponse |
||
6 | { |
||
7 | private $countryCode; |
||
8 | |||
9 | private $vatNumber; |
||
10 | |||
11 | private $requestDate; |
||
12 | |||
13 | private $valid; |
||
14 | |||
15 | private $name; |
||
16 | |||
17 | private $address; |
||
18 | |||
19 | 1 | public function getCountryCode() |
|
23 | |||
24 | 1 | public function getVatNumber() |
|
28 | |||
29 | 1 | public function getRequestDate() |
|
37 | |||
38 | 1 | public function isValid() |
|
42 | |||
43 | 1 | public function getName() |
|
47 | |||
48 | 1 | public function getAddress() |
|
52 | } |