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

GoogleAdsSearchads360V0Resources__CustomColumn

import type { GoogleAdsSearchads360V0Resources__CustomColumn } from "https://googleapis.deno.dev/v1/searchads360:v0.ts";

A custom column. See Search Ads 360 custom column at https://support.google.com/sa360/answer/9633916

interface GoogleAdsSearchads360V0Resources__CustomColumn {
readonly description?: string;
readonly id?: bigint;
readonly name?: string;
readonly queryable?: boolean;
readonly referencedSystemColumns?: string[];
readonly referencesAttributes?: boolean;
readonly referencesMetrics?: boolean;
resourceName?: string;
readonly valueType?:
| "UNSPECIFIED"
| "UNKNOWN"
| "STRING"
| "INT64"
| "DOUBLE"
| "BOOLEAN";
}

§Properties

§
readonly description?: string
[src]

Output only. User-defined description of the custom column.

§
readonly id?: bigint
[src]

Output only. ID of the custom column.

§
readonly name?: string
[src]

Output only. User-defined name of the custom column.

§
readonly queryable?: boolean
[src]

Output only. True when the custom column is available to be used in the query of SearchAds360Service.Search and SearchAds360Service.SearchStream.

§
readonly referencedSystemColumns?: string[]
[src]

Output only. The list of the referenced system columns of this custom column. For example, A custom column "sum of impressions and clicks" has referenced system columns of {"metrics.clicks", "metrics.impressions"}.

§
readonly referencesAttributes?: boolean
[src]

Output only. True when the custom column is referring to one or more attributes.

§
readonly referencesMetrics?: boolean
[src]

Output only. True when the custom column is referring to one or more metrics.

§
resourceName?: string
[src]

Immutable. The resource name of the custom column. Custom column resource names have the form: customers/{customer_id}/customColumns/{custom_column_id}

§
readonly valueType?: "UNSPECIFIED" | "UNKNOWN" | "STRING" | "INT64" | "DOUBLE" | "BOOLEAN"
[src]

Output only. The type of the result value of the custom column.