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

ReportApiColumnSpec

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

A request object used to create a DoubleClick Search report.

interface ReportApiColumnSpec {
columnName?: string;
customDimensionName?: string;
customMetricName?: string;
endDate?: string;
groupByColumn?: boolean;
headerText?: string;
platformSource?: string;
productReportPerspective?: string;
savedColumnName?: string;
startDate?: string;
}

§Properties

§
columnName?: string
[src]

Name of a DoubleClick Search column to include in the report.

§
customDimensionName?: string
[src]

Segments a report by a custom dimension. The report must be scoped to an advertiser or lower, and the custom dimension must already be set up in DoubleClick Search. The custom dimension name, which appears in DoubleClick Search, is case sensitive.\ If used in a conversion report, returns the value of the specified custom dimension for the given conversion, if set. This column does not segment the conversion report.

§
customMetricName?: string
[src]

Name of a custom metric to include in the report. The report must be scoped to an advertiser or lower, and the custom metric must already be set up in DoubleClick Search. The custom metric name, which appears in DoubleClick Search, is case sensitive.

§
endDate?: string
[src]

Inclusive day in YYYY-MM-DD format. When provided, this overrides the overall time range of the report for this column only. Must be provided together with startDate.

§
groupByColumn?: boolean
[src]

Synchronous report only. Set to true to group by this column. Defaults to false.

§
headerText?: string
[src]

Text used to identify this column in the report output; defaults to columnName or savedColumnName when not specified. This can be used to prevent collisions between DoubleClick Search columns and saved columns with the same name.

§
platformSource?: string
[src]

The platform that is used to provide data for the custom dimension. Acceptable values are "floodlight".

§
productReportPerspective?: string
[src]

Returns metrics only for a specific type of product activity. Accepted values are: - "sold": returns metrics only for products that were sold - "advertised": returns metrics only for products that were advertised in a Shopping campaign, and that might or might not have been sold

§
savedColumnName?: string
[src]

Name of a saved column to include in the report. The report must be scoped at advertiser or lower, and this saved column must already be created in the DoubleClick Search UI.

§
startDate?: string
[src]

Inclusive date in YYYY-MM-DD format. When provided, this overrides the overall time range of the report for this column only. Must be provided together with endDate.