google_api_analytics_reporting v0.3.0 GoogleApi.AnalyticsReporting.V4.Model.DimensionFilter View Source

Dimension filter specifies the filtering options on a dimension.

Attributes

  • caseSensitive (boolean()): Should the match be case sensitive? Default is false. Defaults to nil.
  • dimensionName (String.t): The dimension to filter on. A DimensionFilter must contain a dimension. Defaults to nil.
  • expressions (list(String.t)): Strings or regular expression to match against. Only the first value of the list is used for comparison unless the operator is IN_LIST. If IN_LIST operator, then the entire list is used to filter the dimensions as explained in the description of the IN_LIST operator. Defaults to nil.
  • not (boolean()): Logical NOT operator. If this boolean is set to true, then the matching dimension values will be excluded in the report. The default is false. Defaults to nil.
  • operator (String.t): How to match the dimension to the expression. The default is REGEXP. Defaults to nil.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t() View Source
t() :: %GoogleApi.AnalyticsReporting.V4.Model.DimensionFilter{
  caseSensitive: boolean(),
  dimensionName: String.t(),
  expressions: [String.t()],
  not: boolean(),
  operator: String.t()
}

Link to this section Functions

Link to this function

decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.