Class: Google::Apis::AnalyticsV3::Goal::EventDetails

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

Overview

Details for the goal of the type EVENT.

Defined Under Namespace

Classes: EventCondition

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EventDetails

Returns a new instance of EventDetails.



3014
3015
3016
# File 'generated/google/apis/analytics_v3/classes.rb', line 3014

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

Instance Attribute Details

#event_conditionsArray<Google::Apis::AnalyticsV3::Goal::EventDetails::EventCondition>

List of event conditions. Corresponds to the JSON property eventConditions



3006
3007
3008
# File 'generated/google/apis/analytics_v3/classes.rb', line 3006

def event_conditions
  @event_conditions
end

#use_event_valueBoolean Also known as: use_event_value?

Determines if the event value should be used as the value for this goal. Corresponds to the JSON property useEventValue

Returns:

  • (Boolean)


3011
3012
3013
# File 'generated/google/apis/analytics_v3/classes.rb', line 3011

def use_event_value
  @use_event_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3019
3020
3021
3022
# File 'generated/google/apis/analytics_v3/classes.rb', line 3019

def update!(**args)
  @event_conditions = args[:event_conditions] if args.key?(:event_conditions)
  @use_event_value = args[:use_event_value] if args.key?(:use_event_value)
end