google_api_tag_manager v0.0.1 GoogleApi.TagManager.V2.Model.Parameter View Source

Represents a Google Tag Manager Parameter.

Attributes

  • key (String): The named key that uniquely identifies a parameter. Required for top-level parameters, as well as map values. Ignored for list values. Defaults to: null.
  • list (List[Parameter]): This list parameter's parameters (keys will be ignored). Defaults to: null.
  • map (List[Parameter]): This map parameter's parameters (must have keys; keys must be unique). Defaults to: null.
  • 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) Defaults to: null.

    • Enum - one of [boolean, integer, list, map, template, typeUnspecified]
  • value (String): A parameter's value (may contain variable references such as "{{myVariable}}") as appropriate to the specified type. Defaults to: null.