Class: Google::Apis::DfareportingV2_8::CustomFloodlightVariable
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV2_8::CustomFloodlightVariable
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/representations.rb 
Overview
A custom floodlight variable.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of custom floodlight variable to supply a value for.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the custom floodlight variable.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CustomFloodlightVariable 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CustomFloodlightVariable.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomFloodlightVariable
Returns a new instance of CustomFloodlightVariable
      4470 4471 4472  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4470 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#customFloodlightVariable".
Corresponds to the JSON property kind
      4456 4457 4458  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4456 def kind @kind end  | 
  
#type ⇒ String
The type of custom floodlight variable to supply a value for. These map to the
"u[1-20]=" in the tags.
Corresponds to the JSON property type
      4462 4463 4464  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4462 def type @type end  | 
  
#value ⇒ String
The value of the custom floodlight variable. The length of string must not
exceed 50 characters.
Corresponds to the JSON property value
      4468 4469 4470  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4468 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4475 4476 4477 4478 4479  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4475 def update!(**args) @kind = args[:kind] if args.key?(:kind) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end  |