Class: Google::Apis::TagmanagerV1::Parameter
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::TagmanagerV1::Parameter
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/tagmanager_v1/classes.rb,
generated/google/apis/tagmanager_v1/representations.rb,
generated/google/apis/tagmanager_v1/representations.rb 
Overview
Represents a Google Tag Manager Parameter.
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The named key that uniquely identifies a parameter.
 - 
  
    
      #list  ⇒ Array<Google::Apis::TagmanagerV1::Parameter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This list parameter's parameters (keys will be ignored).
 - 
  
    
      #map  ⇒ Array<Google::Apis::TagmanagerV1::Parameter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This map parameter's parameters (must have keys; keys must be unique).
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The parameter type.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A parameter's value (may contain variable references such as "
myVariable") as appropriate to the specified type. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Parameter 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Parameter.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Parameter
Returns a new instance of Parameter
      936 937 938  | 
    
      # File 'generated/google/apis/tagmanager_v1/classes.rb', line 936 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#key ⇒ String
The named key that uniquely identifies a parameter. Required for top-level
parameters, as well as map values. Ignored for list values.
Corresponds to the JSON property key
      907 908 909  | 
    
      # File 'generated/google/apis/tagmanager_v1/classes.rb', line 907 def key @key end  | 
  
#list ⇒ Array<Google::Apis::TagmanagerV1::Parameter>
This list parameter's parameters (keys will be ignored).
Corresponds to the JSON property list
      912 913 914  | 
    
      # File 'generated/google/apis/tagmanager_v1/classes.rb', line 912 def list @list end  | 
  
#map ⇒ Array<Google::Apis::TagmanagerV1::Parameter>
This map parameter's parameters (must have keys; keys must be unique).
Corresponds to the JSON property map
      917 918 919  | 
    
      # File 'generated/google/apis/tagmanager_v1/classes.rb', line 917 def map @map end  | 
  
#type ⇒ String
The parameter type. Valid values are:
- boolean: The value represents a boolean, represented as 'true' or 'false'
 - integer: The value represents a 64-bit signed integer value, in base 10
 - list: A list of parameters should be specified
 - map: A map of parameters should be specified
 - template: The value represents any text; this can include variable
references (even variable references that might return non-string types)
Corresponds to the JSON property 
type 
      928 929 930  | 
    
      # File 'generated/google/apis/tagmanager_v1/classes.rb', line 928 def type @type end  | 
  
#value ⇒ String
A parameter's value (may contain variable references such as "myVariable")
as appropriate to the specified type.
Corresponds to the JSON property value
      934 935 936  | 
    
      # File 'generated/google/apis/tagmanager_v1/classes.rb', line 934 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      941 942 943 944 945 946 947  | 
    
      # File 'generated/google/apis/tagmanager_v1/classes.rb', line 941 def update!(**args) @key = args[:key] if args.key?(:key) @list = args[:list] if args.key?(:list) @map = args[:map] if args.key?(:map) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end  |