index = $index; return $this; } /** * @param string $country * @return $this */ public function setCountry(string $country) { $this->country = $country; return $this; } /** * @param string $region * @return $this */ public function setRegion(string $region) { $this->region = $region; return $this; } /** * @param string $city * @return $this */ public function setCity(string $city) { $this->city = $city; return $this; } /** * @param string $street * @return $this */ public function setStreet(string $street) { $this->street = $street; return $this; } /** * @param string $building * @return $this */ public function setBuilding(string $building) { $this->building = $building; return $this; } /** * @param string $house * @return $this */ public function setHouse(string $house) { $this->house = $house; return $this; } /** * @param string $block * @return $this */ public function setBlock(string $block) { $this->block = $block; return $this; } /** * @param string $flat * @return $this */ public function setFlat(string $flat) { $this->flat = $flat; return $this; } /** * @param string $floor * @return $this */ public function setFloor(string $floor) { $this->floor = $floor; return $this; } /** * @param string $intercomCode * @return $this */ public function setIntercomCode(string $intercomCode) { $this->intercomCode = $intercomCode; return $this; } /** * @param string $metro * @return $this */ public function setMetro(string $metro) { $this->metro = $metro; return $this; } /** * @param string $notes * @return $this */ public function setNotes(string $notes) { $this->notes = $notes; return $this; } /** * @param string $text * @return $this */ public function setText(string $text) { $this->text = $text; return $this; } }