Class: Google::Apis::TagmanagerV2::ListUserPermissionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::ListUserPermissionsResponse
- 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
-
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
-
#user_permission ⇒ Array<Google::Apis::TagmanagerV2::UserPermission>
All GTM UserPermissions of a GTM Account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListUserPermissionsResponse
constructor
A new instance of ListUserPermissionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListUserPermissionsResponse
Returns a new instance of ListUserPermissionsResponse
1139 1140 1141 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1139 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Corresponds to the JSON property nextPageToken
1132 1133 1134 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1132 def next_page_token @next_page_token end |
#user_permission ⇒ Array<Google::Apis::TagmanagerV2::UserPermission>
All GTM UserPermissions of a GTM Account.
Corresponds to the JSON property userPermission
1137 1138 1139 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1137 def @user_permission end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1144 1145 1146 1147 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1144 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 |