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

GoogleCloudChannelV1Column

import type { GoogleCloudChannelV1Column } from "https://googleapis.deno.dev/v1/cloudchannel:v1.ts";

The definition of a report column. Specifies the data properties in the corresponding position of the report rows.

interface GoogleCloudChannelV1Column {
columnId?: string;
dataType?:
| "DATA_TYPE_UNSPECIFIED"
| "STRING"
| "INT"
| "DECIMAL"
| "MONEY"
| "DATE"
| "DATE_TIME";
displayName?: string;
}

§Properties

§
columnId?: string
[src]

The unique name of the column (for example, customer_domain, channel_partner, customer_cost). You can use column IDs in RunReportJobRequest.filter. To see all reports and their columns, call CloudChannelReportsService.ListReports.

§
dataType?: "DATA_TYPE_UNSPECIFIED" | "STRING" | "INT" | "DECIMAL" | "MONEY" | "DATE" | "DATE_TIME"
[src]

The type of the values for this column.

§
displayName?: string
[src]

The column's display name.