Class: Google::Apis::DfareportingV3_0::ListPopulationRule
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::ListPopulationRule
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_0/classes.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb
Overview
Remarketing List Population Rule.
Instance Attribute Summary collapse
- 
  
    
      #floodlight_activity_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Floodlight activity ID associated with this rule. 
- 
  
    
      #floodlight_activity_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of floodlight activity associated with this rule. 
- 
  
    
      #list_population_clauses  ⇒ Array<Google::Apis::DfareportingV3_0::ListPopulationClause> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Clauses that make up this list population rule. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListPopulationRule 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListPopulationRule. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListPopulationRule
Returns a new instance of ListPopulationRule
| 7073 7074 7075 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7073 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#floodlight_activity_id ⇒ Fixnum
Floodlight activity ID associated with this rule. This field can be left blank.
Corresponds to the JSON property floodlightActivityId
| 7058 7059 7060 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7058 def floodlight_activity_id @floodlight_activity_id end | 
#floodlight_activity_name ⇒ String
Name of floodlight activity associated with this rule. This is a read-only,
auto-generated field.
Corresponds to the JSON property floodlightActivityName
| 7064 7065 7066 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7064 def floodlight_activity_name @floodlight_activity_name end | 
#list_population_clauses ⇒ Array<Google::Apis::DfareportingV3_0::ListPopulationClause>
Clauses that make up this list population rule. Clauses are joined by ANDs,
and the clauses themselves are made up of list population terms which are
joined by ORs.
Corresponds to the JSON property listPopulationClauses
| 7071 7072 7073 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7071 def list_population_clauses @list_population_clauses end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 7078 7079 7080 7081 7082 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7078 def update!(**args) @floodlight_activity_id = args[:floodlight_activity_id] if args.key?(:floodlight_activity_id) @floodlight_activity_name = args[:floodlight_activity_name] if args.key?(:floodlight_activity_name) @list_population_clauses = args[:list_population_clauses] if args.key?(:list_population_clauses) end |