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

GoogleAdsSearchads360V0Resources__SearchAds360Field

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

A field or resource (artifact) used by SearchAds360Service.

interface GoogleAdsSearchads360V0Resources__SearchAds360Field {
readonly attributeResources?: string[];
readonly category?:
| "UNSPECIFIED"
| "UNKNOWN"
| "RESOURCE"
| "ATTRIBUTE"
| "SEGMENT"
| "METRIC";
readonly dataType?:
| "UNSPECIFIED"
| "UNKNOWN"
| "BOOLEAN"
| "DATE"
| "DOUBLE"
| "ENUM"
| "FLOAT"
| "INT32"
| "INT64"
| "MESSAGE"
| "RESOURCE_NAME"
| "STRING"
| "UINT64";
readonly enumValues?: string[];
readonly filterable?: boolean;
readonly isRepeated?: boolean;
readonly metrics?: string[];
readonly name?: string;
readonly resourceName?: string;
readonly segments?: string[];
readonly selectable?: boolean;
readonly selectableWith?: string[];
readonly sortable?: boolean;
readonly typeUrl?: string;
}

§Properties

§
readonly attributeResources?: string[]
[src]

Output only. The names of all resources that are selectable with the described artifact. Fields from these resources do not segment metrics when included in search queries. This field is only set for artifacts whose category is RESOURCE.

§
readonly category?: "UNSPECIFIED" | "UNKNOWN" | "RESOURCE" | "ATTRIBUTE" | "SEGMENT" | "METRIC"
[src]

Output only. The category of the artifact.

§
readonly dataType?: "UNSPECIFIED" | "UNKNOWN" | "BOOLEAN" | "DATE" | "DOUBLE" | "ENUM" | "FLOAT" | "INT32" | "INT64" | "MESSAGE" | "RESOURCE_NAME" | "STRING" | "UINT64"
[src]

Output only. This field determines the operators that can be used with the artifact in WHERE clauses.

§
readonly enumValues?: string[]
[src]

Output only. Values the artifact can assume if it is a field of type ENUM. This field is only set for artifacts of category SEGMENT or ATTRIBUTE.

§
readonly filterable?: boolean
[src]

Output only. Whether the artifact can be used in a WHERE clause in search queries.

§
readonly isRepeated?: boolean
[src]

Output only. Whether the field artifact is repeated.

§
readonly metrics?: string[]
[src]

Output only. This field lists the names of all metrics that are selectable with the described artifact when it is used in the FROM clause. It is only set for artifacts whose category is RESOURCE.

§
readonly name?: string
[src]

Output only. The name of the artifact.

§
readonly resourceName?: string
[src]

Output only. The resource name of the artifact. Artifact resource names have the form: SearchAds360Fields/{name}

§
readonly segments?: string[]
[src]

Output only. This field lists the names of all artifacts, whether a segment or another resource, that segment metrics when included in search queries and when the described artifact is used in the FROM clause. It is only set for artifacts whose category is RESOURCE.

§
readonly selectable?: boolean
[src]

Output only. Whether the artifact can be used in a SELECT clause in search queries.

§
readonly selectableWith?: string[]
[src]

Output only. The names of all resources, segments, and metrics that are selectable with the described artifact.

§
readonly sortable?: boolean
[src]

Output only. Whether the artifact can be used in a ORDER BY clause in search queries.

§
readonly typeUrl?: string
[src]

Output only. The URL of proto describing the artifact's data type.