Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SearchAnalyticsQueryResponse

import type { SearchAnalyticsQueryResponse } from "https://googleapis.deno.dev/v1/searchconsole:v1.ts";

A list of rows, one per result, grouped by key. Metrics in each row are aggregated for all data grouped by that key either by page or property, as specified by the aggregation type parameter.

interface SearchAnalyticsQueryResponse {
responseAggregationType?:
| "AUTO"
| "BY_PROPERTY"
| "BY_PAGE"
| "BY_NEWS_SHOWCASE_PANEL";
rows?: ApiDataRow[];
}

§Properties

§
responseAggregationType?: "AUTO" | "BY_PROPERTY" | "BY_PAGE" | "BY_NEWS_SHOWCASE_PANEL"
[src]

How the results were aggregated.

§

A list of rows grouped by the key values in the order given in the query.