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

Header

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

The header information of the columns requested in the report.

interface Header {
currencyCode?: string;
name?: string;
type?:
| "HEADER_TYPE_UNSPECIFIED"
| "DIMENSION"
| "METRIC_TALLY"
| "METRIC_RATIO"
| "METRIC_CURRENCY"
| "METRIC_MILLISECONDS"
| "METRIC_DECIMAL";
}

§Properties

§
currencyCode?: string
[src]

The ISO-4217 currency code of this column. Only present if the header type is METRIC_CURRENCY.

§
name?: string
[src]

Required. Name of the header.

§
type?: "HEADER_TYPE_UNSPECIFIED" | "DIMENSION" | "METRIC_TALLY" | "METRIC_RATIO" | "METRIC_CURRENCY" | "METRIC_MILLISECONDS" | "METRIC_DECIMAL"
[src]

Required. Type of the header.