Class: Google::Apis::AnalyticsV3::RemarketingAudience::StateBasedAudienceDefinition::ExcludeConditions
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsV3::RemarketingAudience::StateBasedAudienceDefinition::ExcludeConditions
- 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
Defines the conditions to exclude users from the audience.
Instance Attribute Summary collapse
-
#exclusion_duration ⇒ String
Whether to make the exclusion TEMPORARY or PERMANENT.
-
#segment ⇒ String
The segment condition that will cause a user to be removed from an audience.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExcludeConditions
constructor
A new instance of ExcludeConditions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExcludeConditions
Returns a new instance of ExcludeConditions
4727 4728 4729 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 4727 def initialize(**args) update!(**args) end |
Instance Attribute Details
#exclusion_duration ⇒ String
Whether to make the exclusion TEMPORARY or PERMANENT.
Corresponds to the JSON property exclusionDuration
4720 4721 4722 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 4720 def exclusion_duration @exclusion_duration end |
#segment ⇒ String
The segment condition that will cause a user to be removed from an audience.
Corresponds to the JSON property segment
4725 4726 4727 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 4725 def segment @segment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4732 4733 4734 4735 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 4732 def update!(**args) @exclusion_duration = args[:exclusion_duration] if args.key?(:exclusion_duration) @segment = args[:segment] if args.key?(:segment) end |