I’ve done a bit of modification to send billing information which you might be interested in `’customer’ => array(
‘firstName’ => $submission_data[‘card_name’]
),
‘billing’ => array(
‘firstName’ => $submission_data[‘card_name’],
‘streetAddress’ => $submission_data[‘address’],
‘locality’ => $submission_data[‘city’],
‘postalCode’ => $submission_data[‘zip’]
)
);
`
Beside that I commented the line you set to remove the Billing Address mapping in the feed:
//$settings = $this->remove_field( 'billingInformation', $settings );