Class: Google::Apis::TagmanagerV2::ListUserPermissionsResponse

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 user permissions response.

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) ⇒ ListUserPermissionsResponse

Returns a new instance of ListUserPermissionsResponse.



1368
1369
1370
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1368

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)


1361
1362
1363
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1361

def next_page_token
  @next_page_token
end

#user_permissionArray<Google::Apis::TagmanagerV2::UserPermission>

All GTM UserPermissions of a GTM Account. Corresponds to the JSON property userPermission



1366
1367
1368
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1366

def user_permission
  @user_permission
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1373
1374
1375
1376
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1373

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