View Source GoogleApi.AnalyticsData.V1alpha.Model.Dimension (google_api_analytics_data v0.17.0)
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 9 dimensions.
Attributes
-
dimensionExpression
(type:GoogleApi.AnalyticsData.V1alpha.Model.DimensionExpression.t
, default:nil
) - One dimension can be the result of an expression of multiple dimensions. For example, dimension "country, city": concatenate(country, ", ", city). -
name
(type:String.t
, default:nil
) - The name of the dimension. See the API Dimensions for the list of dimension names. IfdimensionExpression
is specified,name
can be any string that you would like. For example if adimensionExpression
concatenatescountry
andcity
, you could call that dimensioncountryAndCity
. Dimensions are referenced byname
indimensionFilter
,orderBys
,dimensionExpression
, andpivots
.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.AnalyticsData.V1alpha.Model.Dimension{ dimensionExpression: GoogleApi.AnalyticsData.V1alpha.Model.DimensionExpression.t() | nil, name: String.t() | nil }