1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace GusApi\Type\Response; |
6
|
|
|
|
7
|
|
|
class SearchResponseCompanyData |
8
|
|
|
{ |
9
|
|
|
public string $Regon = ''; |
10
|
|
|
public string $Nip = ''; |
11
|
|
|
public string $StatusNip = ''; |
12
|
|
|
public string $Nazwa = ''; |
13
|
|
|
public string $Wojewodztwo = ''; |
14
|
|
|
public string $Powiat = ''; |
15
|
|
|
public string $Gmina = ''; |
16
|
|
|
public string $Miejscowosc = ''; |
17
|
|
|
public string $KodPocztowy = ''; |
18
|
|
|
public string $Ulica = ''; |
19
|
|
|
public string $NrNieruchomosci = ''; |
20
|
|
|
public string $NrLokalu = ''; |
21
|
|
|
public string $Typ = ''; |
22
|
|
|
public string $SilosID = '0'; |
23
|
|
|
public string $DataZakonczeniaDzialalnosci = ''; |
24
|
|
|
public string $MiejscowoscPoczty = ''; |
25
|
|
|
|
26
|
|
|
public function getRegon(): string |
27
|
|
|
{ |
28
|
|
|
return $this->Regon; |
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
public function getNip(): string |
32
|
|
|
{ |
33
|
|
|
return $this->Nip; |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
public function getStatusNip(): string |
37
|
|
|
{ |
38
|
|
|
return $this->StatusNip; |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
public function getNazwa(): string |
42
|
|
|
{ |
43
|
|
|
return $this->Nazwa; |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
public function getWojewodztwo(): string |
47
|
|
|
{ |
48
|
|
|
return $this->Wojewodztwo; |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
public function getPowiat(): string |
52
|
|
|
{ |
53
|
|
|
return $this->Powiat; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
public function getGmina(): string |
57
|
|
|
{ |
58
|
|
|
return $this->Gmina; |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
public function getMiejscowosc(): string |
62
|
|
|
{ |
63
|
|
|
return $this->Miejscowosc; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
public function getKodPocztowy(): string |
67
|
|
|
{ |
68
|
|
|
return $this->KodPocztowy; |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
public function getUlica(): string |
72
|
|
|
{ |
73
|
|
|
return $this->Ulica; |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
public function getNrNieruchomosci(): string |
77
|
|
|
{ |
78
|
|
|
return $this->NrNieruchomosci; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
public function getNrLokalu(): string |
82
|
|
|
{ |
83
|
|
|
return $this->NrLokalu; |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
public function getTyp(): string |
87
|
|
|
{ |
88
|
|
|
return $this->Typ; |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
public function getSilosID(): string |
92
|
|
|
{ |
93
|
|
|
return $this->SilosID; |
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
public function getDataZakonczeniaDzialalnosci(): string |
97
|
|
|
{ |
98
|
|
|
return $this->DataZakonczeniaDzialalnosci; |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
public function getMiejscowoscPoczty(): string |
102
|
|
|
{ |
103
|
|
|
return $this->MiejscowoscPoczty; |
104
|
|
|
} |
105
|
|
|
} |
106
|
|
|
|