From 59db9c9e6d8e9ab9a45161e53fbe33e3bffaa0ca Mon Sep 17 00:00:00 2001 From: Matt Klepaczewski Date: Mon, 20 Jul 2020 14:30:20 +0100 Subject: [PATCH] Added missing City fields returned by ListCities and ListCitiesFull --- Models/City.php | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/Models/City.php b/Models/City.php index 84e8e6e..9414363 100644 --- a/Models/City.php +++ b/Models/City.php @@ -31,6 +31,71 @@ class City extends AbstractModel */ protected $code = null; + /** + * @var int + */ + protected $receptionLaP; + + /** + * @var int + */ + protected $deliveryLaP; + + /** + * @var int + */ + protected $reception; + + /** + * @var int + */ + protected $foreignReceptionReturns; + + /** + * @var int + */ + protected $terminal; + + /** + * @var string + */ + protected $kladr; + + /** + * @var string + */ + protected $countryCode; + + /** + * @var string + */ + protected $uniqName; + + /** + * @var string + */ + protected $district; + + /** + * @var string + */ + protected $prefix; + + /** + * @var int + */ + protected $courierReception; + + /** + * @var int + */ + protected $courierDelivery; + + /** + * @var + */ + protected $pickupPoint; + /** * @return string */