Reputation: 687
Is there a way to pull/populate all fields while trying to fetch an AdGroupAd
using Adwords Api?
SELECT *
AWQL call and it failed. fields
with a Selector
with no luck.Upvotes: 0
Views: 199
Reputation: 41
Here is the selector definition for AdGroupAd
You can make a selector like this.
SelectorBuilder builder = new SelectorBuilder().fields(AdGroupAdField.values());
Upvotes: 1