Class: Google::Apis::AnalyticsV3::RemarketingAudience::StateBasedAudienceDefinition::ExcludeConditions

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

Defines the conditions to exclude users from the audience.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ExcludeConditions

Returns a new instance of ExcludeConditions



4781
4782
4783
# File 'generated/google/apis/analytics_v3/classes.rb', line 4781

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

Instance Attribute Details

#exclusion_durationString

Whether to make the exclusion TEMPORARY or PERMANENT. Corresponds to the JSON property exclusionDuration

Returns:

  • (String)


4774
4775
4776
# File 'generated/google/apis/analytics_v3/classes.rb', line 4774

def exclusion_duration
  @exclusion_duration
end

#segmentString

The segment condition that will cause a user to be removed from an audience. Corresponds to the JSON property segment

Returns:

  • (String)


4779
4780
4781
# File 'generated/google/apis/analytics_v3/classes.rb', line 4779

def segment
  @segment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4786
4787
4788
4789
# File 'generated/google/apis/analytics_v3/classes.rb', line 4786

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