class Google::Apis::AnalyticsV3::Goal::EventDetails

Details for the goal of the type EVENT.

Attributes

event_conditions[RW]

List of event conditions. Corresponds to the JSON property `eventConditions` @return [Array<Google::Apis::AnalyticsV3::Goal::EventDetails::EventCondition>]

use_event_value[RW]

Determines if the event value should be used as the value for this goal. Corresponds to the JSON property `useEventValue` @return [Boolean]

use_event_value?[RW]

Determines if the event value should be used as the value for this goal. Corresponds to the JSON property `useEventValue` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 3014
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/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