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
| 4753 4754 4755 | # File 'generated/google/apis/analytics_v3/classes.rb', line 4753 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
| 4746 4747 4748 | # File 'generated/google/apis/analytics_v3/classes.rb', line 4746 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
| 4751 4752 4753 | # File 'generated/google/apis/analytics_v3/classes.rb', line 4751 def segment @segment end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4758 4759 4760 4761 | # File 'generated/google/apis/analytics_v3/classes.rb', line 4758 def update!(**args) @exclusion_duration = args[:exclusion_duration] if args.key?(:exclusion_duration) @segment = args[:segment] if args.key?(:segment) end |