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

ConcatenateExpression

import type { ConcatenateExpression } from "https://googleapis.deno.dev/v1/analyticsdata:v1beta.ts";

Used to combine dimension values to a single dimension.

interface ConcatenateExpression {
delimiter?: string;
dimensionNames?: string[];
}

§Properties

§
delimiter?: string
[src]

The delimiter placed between dimension names. Delimiters are often single characters such as "|" or "," but can be longer strings. If a dimension value contains the delimiter, both will be present in response with no distinction. For example if dimension 1 value = "US,FR", dimension 2 value = "JP", and delimiter = ",", then the response will contain "US,FR,JP".

§
dimensionNames?: string[]
[src]

Names of dimensions. The names must refer back to names in the dimensions field of the request.