CUSTOMER_QUERY = <<~QUERY
SELECT
customer.id,
customer.manager,
customer.descriptive_name,
customer.test_account
FROM
customer
QUERY
client.configure do |config|
config.login_customer_id = manager_customer_id
end
service = client.service(:GoogleAds)
# since the first argument requires a "customer_id", is it possible to search for more than one customer?service.search(customer_id.to_s, CUSTOMER_QUERY, page_size: PAGE_SIZE)