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
1414 1415 1416 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1414 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
1406 1407 1408 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1406 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
1412 1413 1414 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1412 def or_filters_for_segment @or_filters_for_segment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1419 1420 1421 1422 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1419 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 |