id; } /** * Set region. * * @return RegionCountry */ public function setRegion($region) { $this->region = $region; return $this; } /** * Get region. * * @return int */ public function getRegion() { return $this->region; } /** * Set country. * * @return RegionCountry */ public function setCountry($country) { $this->country = $country; return $this; } /** * Get country. * * @return int */ public function getCountry() { return $this->country; } /** * Set deliveryTimeMin. * * @param int $deliveryTimeMin * * @return RegionCountry */ public function setDeliveryTimeMin($deliveryTimeMin) { $this->deliveryTimeMin = $deliveryTimeMin; return $this; } /** * Get deliveryTimeMin. * * @return int */ public function getDeliveryTimeMin() { return $this->deliveryTimeMin; } /** * Set deliveryTimeMax. * * @param int $deliveryTimeMax * * @return RegionCountry */ public function setDeliveryTimeMax($deliveryTimeMax) { $this->deliveryTimeMax = $deliveryTimeMax; return $this; } /** * Get deliveryTimeMax. * * @return int */ public function getDeliveryTimeMax() { return $this->deliveryTimeMax; } /** * Set pricelist. * * @return RegionCountry */ public function setPricelist(?PriceList $pricelist = null) { $this->pricelist = $pricelist; return $this; } /** * Get pricelist. * * @return \KupShop\DeliveryPriceListBundle\Entity\PriceList */ public function getPricelist() { return $this->pricelist; } }