1 | <?php |
||
22 | class KrsPerson extends ModelAbstract |
||
23 | { |
||
24 | const CONTEXT = 'krs_osoby'; |
||
25 | const PULL_NONE = 0; |
||
26 | const PULL_KRS_ENTITIES = 1; |
||
27 | const PULL_ALL = KrsPerson::PULL_KRS_ENTITIES; |
||
28 | /** |
||
29 | * ID osoby z KRS |
||
30 | * |
||
31 | * @var integer |
||
32 | **/ |
||
33 | public $id; |
||
34 | /** |
||
35 | * krs |
||
36 | * |
||
37 | * @var string |
||
38 | **/ |
||
39 | public $imie_pierwsze; |
||
40 | /** |
||
41 | * @var string |
||
42 | */ |
||
43 | public $imie_drugie; |
||
44 | /** |
||
45 | * @var string |
||
46 | */ |
||
47 | public $imiona; |
||
48 | /** |
||
49 | * @var string |
||
50 | */ |
||
51 | public $nazwisko; |
||
52 | /** |
||
53 | * @var string |
||
54 | */ |
||
55 | public $plec; |
||
56 | /** |
||
57 | * @var string |
||
58 | */ |
||
59 | public $data_urodzenia; |
||
60 | /** |
||
61 | * @var integer |
||
62 | */ |
||
63 | public $liczba_zalozyciele; |
||
64 | /** |
||
65 | * @var integer |
||
66 | */ |
||
67 | public $liczba_reprezentanci; |
||
68 | /** |
||
69 | * @var integer |
||
70 | */ |
||
71 | public $liczba_nadzorcow; |
||
72 | /** |
||
73 | * @var integer |
||
74 | */ |
||
75 | public $liczba_wspolnicy; |
||
76 | /** |
||
77 | * @var integer |
||
78 | */ |
||
79 | public $liczba_akcjonariusze; |
||
80 | /** |
||
81 | * @var int[] |
||
82 | */ |
||
83 | public $gmina_id; |
||
84 | /** |
||
85 | * @var string |
||
86 | */ |
||
87 | public $str; |
||
88 | /** |
||
89 | * @var \mrcnpdlk\MojePanstwo\Model\KrsPerson\RelatedEntity[] |
||
90 | */ |
||
91 | public $podmioty = []; |
||
92 | /** |
||
93 | * @var string |
||
94 | */ |
||
95 | public $privacy; |
||
96 | |||
97 | |||
98 | /** |
||
99 | * KrsPerson constructor. |
||
100 | * |
||
101 | * @param \stdClass|null $oData |
||
102 | * @param \stdClass|null $oLayers |
||
103 | * |
||
104 | * @throws \mrcnpdlk\MojePanstwo\Exception |
||
105 | */ |
||
106 | 1 | public function __construct(\stdClass $oData = null, \stdClass $oLayers = null) |
|
122 | } |
||
123 |