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.



1218
1219
1220
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1218

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



1211
1212
1213
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1211

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)


1216
1217
1218
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1216

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1223
1224
1225
1226
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1223

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