Class: Google::Apis::TagmanagerV1::UserAccess

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/tagmanager_v1/classes.rb,
lib/google/apis/tagmanager_v1/representations.rb,
lib/google/apis/tagmanager_v1/representations.rb

Overview

Represents a user's permissions to an account and its container.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserAccess

Returns a new instance of UserAccess.



1253
1254
1255
# File 'lib/google/apis/tagmanager_v1/classes.rb', line 1253

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

Instance Attribute Details

#account_accessGoogle::Apis::TagmanagerV1::AccountAccess

Defines the Google Tag Manager Account access permissions. Corresponds to the JSON property accountAccess



1231
1232
1233
# File 'lib/google/apis/tagmanager_v1/classes.rb', line 1231

def 
  @account_access
end

#account_idString

GTM Account ID. Corresponds to the JSON property accountId

Returns:

  • (String)


1236
1237
1238
# File 'lib/google/apis/tagmanager_v1/classes.rb', line 1236

def 
  @account_id
end

#container_accessArray<Google::Apis::TagmanagerV1::ContainerAccess>

GTM Container access permissions. Corresponds to the JSON property containerAccess



1241
1242
1243
# File 'lib/google/apis/tagmanager_v1/classes.rb', line 1241

def container_access
  @container_access
end

#email_addressString

User's email address. Corresponds to the JSON property emailAddress

Returns:

  • (String)


1246
1247
1248
# File 'lib/google/apis/tagmanager_v1/classes.rb', line 1246

def email_address
  @email_address
end

#permission_idString

Account Permission ID. Corresponds to the JSON property permissionId

Returns:

  • (String)


1251
1252
1253
# File 'lib/google/apis/tagmanager_v1/classes.rb', line 1251

def permission_id
  @permission_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1258
1259
1260
1261
1262
1263
1264
# File 'lib/google/apis/tagmanager_v1/classes.rb', line 1258

def update!(**args)
  @account_access = args[:account_access] if args.key?(:account_access)
  @account_id = args[:account_id] if args.key?(:account_id)
  @container_access = args[:container_access] if args.key?(:container_access)
  @email_address = args[:email_address] if args.key?(:email_address)
  @permission_id = args[:permission_id] if args.key?(:permission_id)
end