Class: Google::Analytics::Admin::V1alpha::AudienceEventTrigger
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::AudienceEventTrigger
- 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
-
#event_name ⇒ ::String
Required.
-
#log_condition ⇒ ::Google::Analytics::Admin::V1alpha::AudienceEventTrigger::LogCondition
Required.
Instance Attribute Details
#event_name ⇒ ::String
Returns Required. The event name that will be logged.
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 355 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.
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
# File 'proto_docs/google/analytics/admin/v1alpha/audience.rb', line 355 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 |