View Source GoogleApi.AnalyticsReporting.V4.Model.DimensionFilter (google_api_analytics_reporting v0.18.0)

Dimension filter specifies the filtering options on a dimension.

Attributes

  • caseSensitive (type: boolean(), default: nil) - Should the match be case sensitive? Default is false.
  • dimensionName (type: String.t, default: nil) - The dimension to filter on. A DimensionFilter must contain a dimension.
  • expressions (type: list(String.t), default: nil) - 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.
  • not (type: boolean(), default: nil) - 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.
  • operator (type: String.t, default: nil) - How to match the dimension to the expression. The default is REGEXP.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.AnalyticsReporting.V4.Model.DimensionFilter{
  caseSensitive: boolean() | nil,
  dimensionName: String.t() | nil,
  expressions: [String.t()] | nil,
  not: boolean() | nil,
  operator: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.