class Google::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.
Attributes
first_step_should_match_first_hit[RW]
If set, first step condition must match the first hit of the visitor (in the date range). Corresponds to the JSON property `firstStepShouldMatchFirstHit` @return [Boolean]
first_step_should_match_first_hit?[RW]
If set, first step condition must match the first hit of the visitor (in the date range). Corresponds to the JSON property `firstStepShouldMatchFirstHit` @return [Boolean]
segment_sequence_steps[RW]
The list of steps in the sequence. Corresponds to the JSON property `segmentSequenceSteps` @return [Array<Google::Apis::AnalyticsreportingV4::SegmentSequenceStep>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analyticsreporting_v4/classes.rb, line 1889 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analyticsreporting_v4/classes.rb, line 1894 def update!(**args) @first_step_should_match_first_hit = args[:first_step_should_match_first_hit] if args.key?(:first_step_should_match_first_hit) @segment_sequence_steps = args[:segment_sequence_steps] if args.key?(:segment_sequence_steps) end