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

ReportResult

import type { ReportResult } from "https://googleapis.deno.dev/v1/adsense:v2.ts";

Result of a generated report.

interface ReportResult {
averages?: Row;
endDate?: Date;
headers?: Header[];
rows?: Row[];
startDate?: Date;
totalMatchedRows?: bigint;
totals?: Row;
warnings?: string[];
}

§Properties

§
averages?: Row
[src]

The averages of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.

§
endDate?: Date
[src]

Required. End date of the range (inclusive).

§
headers?: Header[]
[src]

The header information; one for each dimension in the request, followed by one for each metric in the request.

§
rows?: Row[]
[src]

The output rows of the report. Each row is a list of cells; one for each dimension in the request, followed by one for each metric in the request.

§
startDate?: Date
[src]

Required. Start date of the range (inclusive).

§
totalMatchedRows?: bigint
[src]

The total number of rows matched by the report request.

§
totals?: Row
[src]

The totals of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.

§
warnings?: string[]
[src]

Any warnings associated with generation of the report. These warnings are always returned in English.