Class: Google::Apis::TagmanagerV2::AccountAccess

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

Defines the Google Tag Manager Account access permissions.

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

Returns a new instance of AccountAccess.



95
96
97
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 95

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

Instance Attribute Details

#permissionString

Whether the user has no access, user access, or admin access to an account. Corresponds to the JSON property permission

Returns:

  • (String)


93
94
95
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 93

def permission
  @permission
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



100
101
102
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 100

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