Show / Hide Table of Contents

Class EntityUserLink

JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.

Inheritance
System.Object
EntityUserLink
Implements
Google.Apis.Requests.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.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class EntityUserLink : IDirectResponseSchema

Properties

Entity

Entity for this link. It can be an account, a web property, or a view (profile).

Declaration
[JsonProperty("entity")]
public virtual EntityUserLink.EntityData Entity { get; set; }
Property Value
Type Description
EntityUserLink.EntityData

ETag

The ETag of the item.

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

Id

Entity user link ID

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

Kind

Resource type for entity user link.

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

Permissions

Permissions the user has for this entity.

Declaration
[JsonProperty("permissions")]
public virtual EntityUserLink.PermissionsData Permissions { get; set; }
Property Value
Type Description
EntityUserLink.PermissionsData

SelfLink

Self link for this resource.

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

UserRef

User reference.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top