I'm just starting out with the Google Ads API.
When using the .NET examples, specifically GetCampaings I'm trying to list my UAC campaigns.
When I run the example (which has the query below) I only see some of my campaigns, how can I change the query to list my UAC campaigns?
SearchGoogleAdsRequest request = new SearchGoogleAdsRequest()
{
PageSize = PAGE_SIZE,
Query = @"SELECT
campaign.network_settings.target_content_network
FROM campaign
CustomerId = customerId.ToString()
};