Class Dimension
Dimensions are attributes of your data. For example, the dimension city indicates the city from which an event originates. Dimension values in report responses are strings; for example, city could be "Paris" or "New York". Requests are allowed up to 8 dimensions.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.AnalyticsData.v1alpha.Data
Assembly: Google.Apis.AnalyticsData.v1alpha.dll
Syntax
public class Dimension : IDirectResponseSchema
Properties
DimensionExpression
One dimension can be the result of an expression of multiple dimensions. For example, dimension "country, city": concatenate(country, ", ", city).
Declaration
[JsonProperty("dimensionExpression")]
public virtual DimensionExpression DimensionExpression { get; set; }
Property Value
| Type | Description |
|---|---|
| DimensionExpression |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Name
The name of the dimension. See the API
Dimensions for
the list of dimension names. If dimensionExpression is specified, name can be any string that you would
like. For example if a dimensionExpression concatenates country and city, you could call that
dimension countryAndCity. Dimensions are referenced by name in dimensionFilter, orderBys,
dimensionExpression, and pivots.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |