Class: Google::Apis::TagmanagerV2::ListEnvironmentsResponse

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

List Environments Response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListEnvironmentsResponse

Returns a new instance of ListEnvironmentsResponse.



1241
1242
1243
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1241

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

Instance Attribute Details

#environmentArray<Google::Apis::TagmanagerV2::Environment>

All Environments of a GTM Container. Corresponds to the JSON property environment



1234
1235
1236
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1234

def environment
  @environment
end

#next_page_tokenString

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

Returns:

  • (String)


1239
1240
1241
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1239

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1246
1247
1248
1249
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1246

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