Show / Hide Table of Contents

Class DimensionExpression

Used to express a dimension which is the result of a formula of multiple dimensions. Example usages: 1) lower_case(dimension) 2) concatenate(dimension1, symbol, dimension2).

Inheritance
object
DimensionExpression
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.AnalyticsData.v1beta.Data
Assembly: Google.Apis.AnalyticsData.v1beta.dll
Syntax
public class DimensionExpression : IDirectResponseSchema

Properties

Concatenate

Used to combine dimension values to a single dimension. For example, dimension "country, city": concatenate(country, ", ", city).

Declaration
[JsonProperty("concatenate")]
public virtual ConcatenateExpression Concatenate { get; set; }
Property Value
Type Description
ConcatenateExpression

ETag

The ETag of the item.

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

LowerCase

Used to convert a dimension value to lower case.

Declaration
[JsonProperty("lowerCase")]
public virtual CaseExpression LowerCase { get; set; }
Property Value
Type Description
CaseExpression

UpperCase

Used to convert a dimension value to upper case.

Declaration
[JsonProperty("upperCase")]
public virtual CaseExpression UpperCase { get; set; }
Property Value
Type Description
CaseExpression

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX