I have code running the following snippet
```
PagedEnumerable<SearchGoogleAdsResponse, GoogleAdsRow> searchPagedResponse =
googleAdsService.Search(request);
foreach (GoogleAdsRow googleAdsRow in searchPagedResponse)
{
```
Currently I'm serializing the googleAdsRow to JSON and back again so that I can programmatically access the values. There's probably a much better way but I haven't figured it out yet.
When I'm in Visual Studio's debugger I can access the values in googleAdsRow by entering things like `
googleAdsRow.Customer.Id`. Fine, but suppose I'm passing in a string describing that path. How do I evaluate the contents of googleAdsRow so as to access Customer's Id and Campaign's Id and AdGroupAd.PolicySummary.ReviewStatus?
-- Bruce