email = $address->getEmail(); $this->name = $address->getName(); $this->street1 = $address->getStreetLine(1); $this->street2 = $address->getStreetLine(2); $this->country = $address->getCountryId(); $this->cityName = $address->getCity(); $this->stateOrProvince = $address->getRegion(); $this->phone = $address->getTelephone(); $this->postalCode = $address->getPostcode(); $this->countryName = $address->getCountryId(); } public function jsonSerialize(): mixed { return get_object_vars($this); } }