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
System.Object
DimensionExpression
Implements
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 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 |
|---|---|
| System.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 |