companyId = $companyId; $this->streetOne = $streetOne; $this->streetTwo = $streetTwo; $this->city = $city; $this->state = $state; $this->postCode = $postCode; $this->country = $country; $this->default = $default; $this->billing = $billing; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return string */ public function getStreetOne(): string { return $this->streetOne; } /** * @return null|string */ public function getStreetTwo(): ?string { return $this->streetTwo; } /** * @return string */ public function getCity(): string { return $this->city; } /** * @return string */ public function getState(): string { return $this->state; } /** * @return string */ public function getPostCode(): string { return $this->postCode; } /** * @return string */ public function getCountry(): string { return $this->country; } /** * @return int */ public function getDefault(): int { return $this->default; } /** * @return int */ public function getBilling(): int { return $this->billing; } }