private function getCustomerAddress(): CustomerAddressEntity
{ $address =
new CustomerAddressEntity();
$address->
setId('billing-address-id'
);
$address->
setSalutationId('billing-address-salutation-id'
);
$address->
setFirstName('billing-address-first-name'
);
$address->
setLastName('billing-address-last-name'
);
$address->
setStreet('billing-address-street'
);
$address->
setZipcode('billing-address-zipcode'
);
$address->
setCity('billing-address-city'
);
$address->
setCountryId('billing-address-country-id'
);
return $address;
} private function getOrderCustomer(): OrderCustomerEntity
{ $customer =
new OrderCustomerEntity();
$customer->
setId('order-customer-id'
);
$customer->
setCustomerId('customer-id'
);
$customer->
setEmail('order-customer-email'
);