Show / Hide Table of Contents

Class ConcatenateExpression

Used to combine dimension values to a single dimension.

Inheritance
System.Object
ConcatenateExpression
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AnalyticsData.v1alpha.Data
Assembly: Google.Apis.AnalyticsData.v1alpha.dll
Syntax
public class ConcatenateExpression : IDirectResponseSchema

Properties

Delimiter

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".

Declaration
[JsonProperty("delimiter")]
public virtual string Delimiter { get; set; }
Property Value
Type Description
System.String

DimensionNames

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

Declaration
[JsonProperty("dimensionNames")]
public virtual IList<string> DimensionNames { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top