id; } public function getRefId(): ?string { return $this->refId; } public function setRefId(string $refId): self { $this->refId = $refId; return $this; } public function getStreet(): ?string { return $this->street; } public function setStreet(?string $street): self { $this->street = $street; return $this; } public function getStreetNumber(): ?string { return $this->streetNumber; } public function setStreetNumber(?string $streetNumber): self { $this->streetNumber = $streetNumber; return $this; } /** * Set postcode * * @param PostalCode $postcode * * @return Address */ public function setPostcode(PostalCode $postcode = null) { $this->postcode = $postcode; return $this; } /** * Get postcode * * @return PostalCode */ public function getPostcode() { return $this->postcode; } public function getMunicipalityCode(): ?string { return $this->municipalityCode; } public function setMunicipalityCode(?string $municipalityCode): self { $this->municipalityCode = $municipalityCode; return $this; } public function getSource(): ?string { return $this->source; } public function setSource(?string $source): self { $this->source = $source; return $this; } public function getPoint(): ?Point { return $this->point; } public function setPoint(?Point $point): self { $this->point = $point; return $this; } }