Class: Google::Apis::AnalyticsreportingV4::SequenceSegment

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

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SequenceSegment

Returns a new instance of SequenceSegment.



1973
1974
1975
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1973

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

Instance Attribute Details

#first_step_should_match_first_hitBoolean Also known as: first_step_should_match_first_hit?

If set, first step condition must match the first hit of the visitor (in the date range). Corresponds to the JSON property firstStepShouldMatchFirstHit

Returns:

  • (Boolean)


1965
1966
1967
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1965

def first_step_should_match_first_hit
  @first_step_should_match_first_hit
end

#segment_sequence_stepsArray<Google::Apis::AnalyticsreportingV4::SegmentSequenceStep>

The list of steps in the sequence. Corresponds to the JSON property segmentSequenceSteps



1971
1972
1973
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1971

def segment_sequence_steps
  @segment_sequence_steps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1978
1979
1980
1981
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1978

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