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).
Implements
Inherited Members
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 |