GTM Permissions

permission.py

class gtm_manager.permission.GTMPermission(permission=None, path=None, **kwargs)[source]

Open a specific GTM Permission.

Parameters
  • permission (dict) – An API representation of the GTM Permission. If provided, the resource will be not be loaded from the API. permission or path argument must be set.

  • path (str) – The API path to the resource, i.e. “accounts/1234/permissions/1234”. If provided instead of permission, the representation will be loaded from the API. path or permission argument must be set.

  • **kwargs – Additional keyword args to initialize the base class.

property path

GTM Permission’s API relative path.

Type

str

property containerAccess

GTM Permission’s API relative path.

Type

str

property accountAccess

GTM Permission’s API relative path.

Type

str

property emailAddress

GTM Permission’s API relative path.

Type

str

property accountId

GTM Permission’s API relative path.

Type

str

class gtm_manager.permission.GTMContainerAccess(containerAccess)[source]