| 1 | <?php |
||
| 27 | class RelatedEntity |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | public $opis; |
||
| 33 | /** |
||
| 34 | * ID podmiotu KRS |
||
| 35 | * |
||
| 36 | * @var int |
||
| 37 | */ |
||
| 38 | public $podmiot_id; |
||
| 39 | /** |
||
| 40 | * @var null|\mrcnpdlk\MojePanstwo\Model\KrsEntity |
||
| 41 | */ |
||
| 42 | public $podmiot; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * RelatedEntity constructor. |
||
| 46 | * |
||
| 47 | * @param string $str |
||
| 48 | * |
||
| 49 | * @throws \mrcnpdlk\MojePanstwo\Exception |
||
| 50 | */ |
||
| 51 | 1 | public function __construct(string $str) |
|
| 74 | } |
||
| 75 |