| 1 | <?php |
||
| 7 | class GeoRegion extends Model |
||
| 8 | { |
||
| 9 | protected $id = null; |
||
| 10 | |||
| 11 | protected $parentId = null; |
||
| 12 | |||
| 13 | protected $type = null; |
||
| 14 | |||
| 15 | protected $name = null; |
||
| 16 | |||
| 17 | protected $childrenCount = null; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Retrieve the id property |
||
| 21 | * |
||
| 22 | * @return int|null |
||
| 23 | */ |
||
| 24 | 4 | public function getId() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Retrieve the parentId property |
||
| 31 | * |
||
| 32 | * @return int|null |
||
| 33 | */ |
||
| 34 | 4 | public function getParentId() |
|
| 38 | |||
| 39 | /** |
||
| 40 | * Retrieve the type property |
||
| 41 | * |
||
| 42 | * @return string|null |
||
| 43 | */ |
||
| 44 | 4 | public function getType() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * Retrieve the name property |
||
| 51 | * |
||
| 52 | * @return string|null |
||
| 53 | */ |
||
| 54 | 4 | public function getName() |
|
| 58 | |||
| 59 | /** |
||
| 60 | * Retrieve the childrenCount property |
||
| 61 | * |
||
| 62 | * @return int|null |
||
| 63 | */ |
||
| 64 | 3 | public function getChildrenCount() |
|
| 68 | } |
||
| 69 |