AddressStruct example

$row['balance'],
                $row['dispo'],
                $row['isPartnerShop']
            );
        }

        return $domains;
    }

    private function hydrateBasketAddress(array $billing, array $contact): AddressStruct
    {
        return new AddressStruct(
            $billing['country']['name'],
            $billing['zipCode'],
            $billing['city'],
            $billing['street'],
            $billing['email'],
            $contact['firstName'],
            $contact['lastName']
        );
    }

    /** * @param array<string, mixed> $data */
Home | Imprint | This part of the site doesn't use cookies.