Class: Google::Apis::TagmanagerV2::ListWorkspacesResponse

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 workspaces in a container.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListWorkspacesResponse

Returns a new instance of ListWorkspacesResponse.



1416
1417
1418
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1416

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


1409
1410
1411
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1409

def next_page_token
  @next_page_token
end

#workspaceArray<Google::Apis::TagmanagerV2::Workspace>

All Workspaces of a GTM Container. Corresponds to the JSON property workspace



1414
1415
1416
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1414

def workspace
  @workspace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1421
1422
1423
1424
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1421

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