Class: Google::Apis::TagmanagerV2::ListEnabledBuiltInVariablesResponse

Inherits:
Object
  • Object
show all
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

A list of enabled built-in variables.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListEnabledBuiltInVariablesResponse

Returns a new instance of ListEnabledBuiltInVariablesResponse



1014
1015
1016
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1014

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#built_in_variableArray<Google::Apis::TagmanagerV2::BuiltInVariable>

All GTM BuiltInVariables of a GTM container. Corresponds to the JSON property builtInVariable



1007
1008
1009
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1007

def built_in_variable
  @built_in_variable
end

#next_page_tokenString

Continuation token for fetching the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1012
1013
1014
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1012

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1019
1020
1021
1022
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1019

def update!(**args)
  @built_in_variable = args[:built_in_variable] if args.key?(:built_in_variable)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end