Class: Google::Apis::AnalyticsreportingV4::SegmentFilter

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/analyticsreporting_v4/classes.rb,
generated/google/apis/analyticsreporting_v4/representations.rb,
generated/google/apis/analyticsreporting_v4/representations.rb

Overview

SegmentFilter defines the segment to be either a simple or a sequence segment. A simple segment condition contains dimension and metric conditions to select the sessions or users. A sequence segment condition can be used to select users or sessions based on sequential conditions.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SegmentFilter

Returns a new instance of SegmentFilter.



1750
1751
1752
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1750

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#notBoolean Also known as: not?

If true, match the complement of simple or sequence segment. For example, to match all visits not from "New York", we can define the segment as follows: " sessionSegment": "segmentFilters": [ "simpleSegment" :" orFiltersForSegment": [ "segmentFilterClauses":["dimensionFilter": " dimensionName": "ga:city", "expressions": ["New York"] ] ], "not": "True" ], Corresponds to the JSON property not

Returns:

  • (Boolean)


1734
1735
1736
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1734

def not
  @not
end

#sequence_segmentGoogle::Apis::AnalyticsreportingV4::SequenceSegment

Sequence conditions consist of one or more steps, where each step is defined by one or more dimension/metric conditions. Multiple steps can be combined with special sequence operators. Corresponds to the JSON property sequenceSegment



1742
1743
1744
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1742

def sequence_segment
  @sequence_segment
end

#simple_segmentGoogle::Apis::AnalyticsreportingV4::SimpleSegment

A Simple segment conditions consist of one or more dimension/metric conditions that can be combined. Corresponds to the JSON property simpleSegment



1748
1749
1750
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1748

def simple_segment
  @simple_segment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1755
1756
1757
1758
1759
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1755

def update!(**args)
  @not = args[:not] if args.key?(:not)
  @sequence_segment = args[:sequence_segment] if args.key?(:sequence_segment)
  @simple_segment = args[:simple_segment] if args.key?(:simple_segment)
end