streetOne = $streetOne; $this->streetTwo = $streetTwo; $this->countryId = $countryId; $this->stateId = $stateId; $this->districtId = $districtId; $this->postCode = $postCode; $this->type = $type; $this->status = $status; $this->reference = $reference; } /** * @return string */ public function getStreetOne(): string { return $this->streetOne; } /** * @return null|string */ public function getStreetTwo(): ?string { return $this->streetTwo; } /** * @return int */ public function getCountryId(): int { return $this->countryId; } /** * @return int */ public function getStateId(): int { return $this->stateId; } /** * @return int */ public function getDistrictId(): int { return $this->districtId; } /** * @return int */ public function getPostCode(): int { return $this->postCode; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return int */ public function getStatus(): int { return $this->status; } /** * @return null|string */ public function getReference(): ?string { return $this->reference; } }