I am using the Quickbooks sdk from consolibyte and am trying to extract the email address from the customer query. Here is the code:
$CustomerService = new QuickBooks_IPP_Service_Customer();
$customers = $CustomerService->query($this->Context, $this->realm, "SELECT * FROM Customer ");
When I do a print_r($customers) I can see the email address, but am unable to get because it is protected.
How do i get that data? Thanks