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

AccountsReportsGenerateOptions

import type { AccountsReportsGenerateOptions } from "https://googleapis.deno.dev/v1/adsensehost:v4.1.ts";

Additional options for AdSenseHost#accountsReportsGenerate.

interface AccountsReportsGenerateOptions {
dimension?: string;
endDate: string;
filter?: string;
locale?: string;
maxResults?: number;
metric?: string;
sort?: string;
startDate: string;
startIndex?: number;
}

§Properties

§
dimension?: string
[src]

Dimensions to base the report on.

§
endDate: string
[src]

End of the date range to report on in "YYYY-MM-DD" format, inclusive.

§
filter?: string
[src]

Filters to be run on the report.

§
locale?: string
[src]

Optional locale to use for translating report output to a local language. Defaults to "en_US" if not specified.

§
maxResults?: number
[src]

The maximum number of rows of report data to return.

§
metric?: string
[src]

Numeric columns to include in the report.

§
sort?: string
[src]

The name of a dimension or metric to sort the resulting report on, optionally prefixed with "+" to sort ascending or "-" to sort descending. If no prefix is specified, the column is sorted ascending.

§
startDate: string
[src]

Start of the date range to report on in "YYYY-MM-DD" format, inclusive.

§
startIndex?: number
[src]

Index of the first row of report data to return.