Expand description
Google Ads gRPC library.
A gRPC client library for Google Ads API, generated automatically from the API definition files.
Provides GoogleAdsRow.get(path: &str)
accessor method to easily retrieve fields selected in GAQL.
§Example
ⓘ
let field_mask = response.field_mask.unwrap();
for row in response.results {
for path in &field_mask.paths {
print!("{}: {}\t", path, row.get(&path));
}
print!("\n");
}