I'm trying to get the final url array from a Google Adwords Java API ExpandedTextAdd. I can get all of the other fields, such as the headlines, description and path urls, but calling getfinalUrls always returns null, even though the ad being requested has a final url.
This is my selector:
selector.fields(AdGroupAdField.Id, AdGroupAdField.AdGroupId, AdGroupAdField.Status, AdGroupAdField.Labels)
.orderAscBy(AdGroupAdField.Id)
.equals(AdGroupAdField.AdGroupId, adGroupIds.toString())
.in(AdGroupAdField.Status, "ENABLED", "PAUSED")
.equals("AdType", getAdType());There doesn't seem to be a AdGroupAdField for final urls. Calling getFinalUrls on the ExpandedTextAd returns null every time. I'm getting the other fields such as headline and description just fine.