class Google::Apis::AnalyticsV3::RemarketingAudience::StateBasedAudienceDefinition::ExcludeConditions
Defines the conditions to exclude users from the audience.
Attributes
exclusion_duration[RW]
Whether to make the exclusion TEMPORARY or PERMANENT. Corresponds to the JSON property `exclusionDuration` @return [String]
segment[RW]
The segment condition that will cause a user to be removed from an audience. Corresponds to the JSON property `segment` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 4727 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 4732 def update!(**args) @exclusion_duration = args[:exclusion_duration] if args.key?(:exclusion_duration) @segment = args[:segment] if args.key?(:segment) end