Class: Google::Apis::AnalyticsreportingV4::SegmentSequenceStep
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::SegmentSequenceStep
- 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
A segment sequence definition.
Instance Attribute Summary collapse
-
#match_type ⇒ String
Specifies if the step immediately precedes or can be any time before the next step.
-
#or_filters_for_segment ⇒ Array<Google::Apis::AnalyticsreportingV4::OrFiltersForSegment>
A sequence is specified with a list of Or grouped filters which are combined with
AND
operator.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SegmentSequenceStep
constructor
A new instance of SegmentSequenceStep.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SegmentSequenceStep
Returns a new instance of SegmentSequenceStep
1358 1359 1360 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1358 def initialize(**args) update!(**args) end |
Instance Attribute Details
#match_type ⇒ String
Specifies if the step immediately precedes or can be any time before the
next step.
Corresponds to the JSON property matchType
1350 1351 1352 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1350 def match_type @match_type end |
#or_filters_for_segment ⇒ Array<Google::Apis::AnalyticsreportingV4::OrFiltersForSegment>
A sequence is specified with a list of Or grouped filters which are
combined with AND
operator.
Corresponds to the JSON property orFiltersForSegment
1356 1357 1358 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1356 def or_filters_for_segment @or_filters_for_segment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1363 1364 1365 1366 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1363 def update!(**args) @match_type = args[:match_type] if args.key?(:match_type) @or_filters_for_segment = args[:or_filters_for_segment] if args.key?(:or_filters_for_segment) end |