Hi Google Support Team,

We were using AdWords API TrafficEstimatorService.get() service to retreave 
Keyword estimates for a campaign. Now, we are trying to migrate this 
service to Google Ads API
by using KeywordPlanService.generateForecastMetrics(resourceName). The 
response of generateForecastMetrics result units are bit confusing since 
units specified 
in document and printed statement in example program are not matching.

In Document:
ForecastMetrics
impressions DoubleValue
ctr DoubleValue
average_cpc Int64Value
clicks DoubleValue
cost_micros Int64Value
Ref: 
https://developers.google.com/google-ads/api/reference/rpc/google.ads.googleads.v2.services#forecastmetrics

In Examples:
for (KeywordPlanKeywordForecast forecast : 
response.getKeywordForecastsList()) {
ForecastMetrics metrics = forecast.getKeywordForecast();
System.out.printf(
"%d Keyword ID: %s%n", ++i, 
forecast.getKeywordPlanAdGroupKeyword().getValue());
System.out.printf("Estimated daily clicks: %f%n", 
metrics.getClicks().getValue());
System.out.printf("Estimated daily impressions: %f%n", 
metrics.getImpressions().getValue());
System.out.printf(
"Estimated *average cpc (micros):* %d%n%n", 
metrics.getAverageCpc().getValue());
}
Ref: 
https://github.com/googleads/google-ads-java/blob/master/google-ads-examples/src/main/java/com/google/ads/googleads/examples/planning/GenerateForecastMetrics.java

Here I want's to understand the average_cpc result value in micros or not? 
also clicks and impressions values are daily basis or not? 

Thanks
Jubin

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a566bb37-0961-4c14-921c-3c6b61817b09%40googlegroups.com.

Reply via email to