Class: Google::Apis::TagmanagerV2::ZoneBoundary
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::TagmanagerV2::ZoneBoundary
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/tagmanager_v2/classes.rb,
generated/google/apis/tagmanager_v2/representations.rb,
generated/google/apis/tagmanager_v2/representations.rb 
Overview
Represents a Zone's boundaries.
Instance Attribute Summary collapse
- 
  
    
      #condition  ⇒ Array<Google::Apis::TagmanagerV2::Condition> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The conditions that, when conjoined, make up the boundary.
 - 
  
    
      #custom_evaluation_trigger_id  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Custom evaluation trigger IDs.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ZoneBoundary 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ZoneBoundary.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ZoneBoundary
Returns a new instance of ZoneBoundary
      2560 2561 2562  | 
    
      # File 'generated/google/apis/tagmanager_v2/classes.rb', line 2560 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#condition ⇒ Array<Google::Apis::TagmanagerV2::Condition>
The conditions that, when conjoined, make up the boundary.
Corresponds to the JSON property condition
      2552 2553 2554  | 
    
      # File 'generated/google/apis/tagmanager_v2/classes.rb', line 2552 def condition @condition end  | 
  
#custom_evaluation_trigger_id ⇒ Array<String>
Custom evaluation trigger IDs. A zone will evaluate its boundary conditions
when any of the listed triggers are true.
Corresponds to the JSON property customEvaluationTriggerId
      2558 2559 2560  | 
    
      # File 'generated/google/apis/tagmanager_v2/classes.rb', line 2558 def custom_evaluation_trigger_id @custom_evaluation_trigger_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2565 2566 2567 2568  | 
    
      # File 'generated/google/apis/tagmanager_v2/classes.rb', line 2565 def update!(**args) @condition = args[:condition] if args.key?(:condition) @custom_evaluation_trigger_id = args[:custom_evaluation_trigger_id] if args.key?(:custom_evaluation_trigger_id) end  |