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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/tagmanager_v1/classes.rb,
generated/google/apis/tagmanager_v1/representations.rb,
generated/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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UserAccess

Returns a new instance of UserAccess.



1383
1384
1385
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1383

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



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

def 
  @account_access
end

#account_idString

GTM Account ID. Corresponds to the JSON property accountId

Returns:

  • (String)


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

def 
  @account_id
end

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

GTM Container access permissions. Corresponds to the JSON property containerAccess



1371
1372
1373
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1371

def container_access
  @container_access
end

#email_addressString

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

Returns:

  • (String)


1376
1377
1378
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1376

def email_address
  @email_address
end

#permission_idString

Account Permission ID. Corresponds to the JSON property permissionId

Returns:

  • (String)


1381
1382
1383
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1381

def permission_id
  @permission_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1388
1389
1390
1391
1392
1393
1394
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1388

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