for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TERYT-API
*
* Copyright (c) 2017 pudelek.org.pl
* For the full copyright and license information, please view source file
* that is bundled with this package in the file LICENSE
* Author Marcin Pudełek <[email protected]>
*/
* Created by Marcin.
* Date: 06.09.2017
* Time: 21:56
namespace mrcnpdlk\Teryt\ResponseModel\Dictionary;
* Class RodzajMiejscowosci
* @package mrcnpdlk\Teryt\ResponseModel\Dictionary
class RodzajMiejscowosci
{
* Identyfikator typu miejscowości
* @var string
public $id;
* Nazwa typu
public $name;
* Opis
public $desc;
* RodzajMiejscowosci constructor.
* @param \stdClass $oData Obiekt zwrócony z TerytWS1
public function __construct(\stdClass $oData)
$this->id = $oData->Symbol;
$this->name = $oData->Nazwa;
$this->desc = $oData->Opis;
}