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

Report

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

A DoubleClick Search report. This object contains the report request, some report metadata such as currency code, and the generated report rows or report files.

interface Report {
files?: {
byteCount?: bigint;
url?: string;
}
[]
;
id?: string;
isReportReady?: boolean;
kind?: string;
request?: ReportRequest;
rowCount?: number;
rows?: ReportRow[];
statisticsCurrencyCode?: string;
statisticsTimeZone?: string;
}

§Properties

§
files?: {
byteCount?: bigint;
url?: string;
}
[]
[src]

Asynchronous report only. Contains a list of generated report files once the report has successfully completed.

§
id?: string
[src]

Asynchronous report only. Id of the report.

§
isReportReady?: boolean
[src]

Asynchronous report only. True if and only if the report has completed successfully and the report files are ready to be downloaded.

§
kind?: string
[src]

Identifies this as a Report resource. Value: the fixed string doubleclicksearch#report.

§

The request that created the report. Optional fields not specified in the original request are filled with default values.

§
rowCount?: number
[src]

The number of report rows generated by the report, not including headers.

§

Synchronous report only. Generated report rows.

§
statisticsCurrencyCode?: string
[src]

The currency code of all monetary values produced in the report, including values that are set by users (e.g., keyword bid settings) and metrics (e.g., cost and revenue). The currency code of a report is determined by the statisticsCurrency field of the report request.

§
statisticsTimeZone?: string
[src]

If all statistics of the report are sourced from the same time zone, this would be it. Otherwise the field is unset.