type = $type; $this->referenceId = $referenceId; $this->name = $name; $this->phoneNumber = $phoneNumber; $this->streetOne = $streetOne; $this->streetTwo = $streetTwo; $this->city = $city; $this->state = $state; $this->postCode = $postCode; $this->country = $country; $this->isDefault = $isDefault; $this->isBilling = $isBilling; } /** * @return int|null */ public function getType(): ?int { return $this->type; } /** * @return int|null */ public function getReferenceId(): ?int { return $this->referenceId; } /** * @return null|string */ public function getName(): ?string { return $this->name; } /** * @return null|string */ public function getPhoneNumber(): ?string { return $this->phoneNumber; } /** * @return null|string */ public function getStreetOne(): ?string { return $this->streetOne; } /** * @return null|string */ public function getStreetTwo(): ?string { return $this->streetTwo; } /** * @return null|string */ public function getCity(): ?string { return $this->city; } /** * @return null|string */ public function getState(): ?string { return $this->state; } /** * @return null|string */ public function getPostCode(): ?string { return $this->postCode; } /** * @return null|string */ public function getCountry(): ?string { return $this->country; } /** * @return bool */ public function isDefault(): bool { return $this->isDefault; } /** * @return bool */ public function isBilling(): bool { return $this->isBilling; } }