I've adapted the code at <
https://developers.google.com/google-ads/api/docs/keyword-planning/generate-keyword-ideas>. I don't understand why at one point why the example says,
```
var response =
keywordPlanIdeaService.GenerateKeywordIdeas(request);
```
and then about three lines later says,
```
KeywordPlanHistoricalMetrics metrics = result.KeywordIdeaMetrics;
```
It seems on the one hand to be generating keyword ideas and then on the other giving history.
So my questions are:
1. What does the C# code on the "idea generation" page demonstrate Ideas or Historical Metrics (are these the same, conceptually, as AdWords' IDEAS and STATS respectively?)?
2. If it is in fact demonstrating Ideas, how would one adapt it for Historical Metrics?
--- Bruce