id; } /** * Set origin * * @param int $origin * * @return PostalCode */ public function setOrigin($origin) { $this->origin = $origin; return $this; } /** * Get origin * * @return int */ public function getOrigin() { return $this->origin; } /** * Set name * * @param string $name * * @return PostalCode */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set code * * @param string $code * * @return PostalCode */ public function setCode($code) { $this->code = $code; return $this; } /** * Get code * * @return string */ public function getCode() { return $this->code; } /** * Set country * * @param Country $country * * @return PostalCode */ public function setCountry(Country $country = null) { $this->country = $country; return $this; } /** * Get country * * @return Country */ public function getCountry() { return $this->country; } public function getRefId(): ?string { return $this->refId; } public function setRefId(?string $refId): self { $this->refId = $refId; return $this; } public function getSource(): ?string { return $this->source; } public function setSource(?string $source): self { $this->source = $source; return $this; } public function getCenter(): ?Point { return $this->center; } public function setCenter(?Point $center): self { $this->center = $center; return $this; } }