Show / Hide Table of Contents

Class UserPermission

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

Inheritance
System.Object
UserPermission
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.TagManager.v2.Data
Assembly: Google.Apis.TagManager.v2.dll
Syntax
public class UserPermission : IDirectResponseSchema

Properties

AccountAccess

GTM Account access permissions.

Declaration
[JsonProperty("accountAccess")]
public virtual AccountAccess AccountAccess { get; set; }
Property Value
Type Description
AccountAccess

AccountId

The Account ID uniquely identifies the GTM Account.

Declaration
[JsonProperty("accountId")]
public virtual string AccountId { get; set; }
Property Value
Type Description
System.String

ContainerAccess

GTM Container access permissions.

Declaration
[JsonProperty("containerAccess")]
public virtual IList<ContainerAccess> ContainerAccess { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ContainerAccess>

EmailAddress

User's email address.

Declaration
[JsonProperty("emailAddress")]
public virtual string EmailAddress { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Path

GTM UserPermission's API relative path.

Declaration
[JsonProperty("path")]
public virtual string Path { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top