Class: Google::Analytics::Admin::V1alpha::AudienceEventTrigger

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/analytics/admin/v1alpha/audience.rb

Overview

Specifies an event to log when a user joins the Audience.

Defined Under Namespace

Modules: LogCondition

Instance Attribute Summary collapse

Instance Attribute Details

#event_name::String

Returns Required. The event name that will be logged.

Returns:

  • (::String)

    Required. The event name that will be logged.



329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 329

class AudienceEventTrigger
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Determines when to log the event.
  module LogCondition
    # Log condition is not specified.
    LOG_CONDITION_UNSPECIFIED = 0

    # The event should be logged only when a user is joined.
    AUDIENCE_JOINED = 1

    # The event should be logged whenever the Audience condition is met, even
    # if the user is already a member of the Audience.
    AUDIENCE_MEMBERSHIP_RENEWED = 2
  end
end

#log_condition::Google::Analytics::Admin::V1alpha::AudienceEventTrigger::LogCondition

Returns Required. When to log the event.

Returns:



329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 329

class AudienceEventTrigger
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Determines when to log the event.
  module LogCondition
    # Log condition is not specified.
    LOG_CONDITION_UNSPECIFIED = 0

    # The event should be logged only when a user is joined.
    AUDIENCE_JOINED = 1

    # The event should be logged whenever the Audience condition is met, even
    # if the user is already a member of the Audience.
    AUDIENCE_MEMBERSHIP_RENEWED = 2
  end
end