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

RunRealtimeReportResponse

import type { RunRealtimeReportResponse } from "https://googleapis.deno.dev/v1/analyticsdata:v1beta.ts";

The response realtime report table corresponding to a request.

interface RunRealtimeReportResponse {
dimensionHeaders?: DimensionHeader[];
kind?: string;
maximums?: Row[];
metricHeaders?: MetricHeader[];
minimums?: Row[];
propertyQuota?: PropertyQuota;
rowCount?: number;
rows?: Row[];
totals?: Row[];
}

§Properties

§
dimensionHeaders?: DimensionHeader[]
[src]

Describes dimension columns. The number of DimensionHeaders and ordering of DimensionHeaders matches the dimensions present in rows.

§
kind?: string
[src]

Identifies what kind of resource this message is. This kind is always the fixed string "analyticsData#runRealtimeReport". Useful to distinguish between response types in JSON.

§
maximums?: Row[]
[src]

If requested, the maximum values of metrics.

§
metricHeaders?: MetricHeader[]
[src]

Describes metric columns. The number of MetricHeaders and ordering of MetricHeaders matches the metrics present in rows.

§
minimums?: Row[]
[src]

If requested, the minimum values of metrics.

§
propertyQuota?: PropertyQuota
[src]

This Analytics Property's Realtime quota state including this request.

§
rowCount?: number
[src]

The total number of rows in the query result. rowCount is independent of the number of rows returned in the response and the limit request parameter. For example if a query returns 175 rows and includes limit of 50 in the API request, the response will contain rowCount of 175 but only 50 rows.

§
rows?: Row[]
[src]

Rows of dimension value combinations and metric values in the report.

§
totals?: Row[]
[src]

If requested, the totaled values of metrics.