Show / Hide Table of Contents

Class EntityUserLink.EntityData

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

Inheritance
System.Object
EntityUserLink.EntityData
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 EntityData

Properties

AccountRef

Account for this link.

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

ProfileRef

View (Profile) for this link.

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

WebPropertyRef

Web property for this link.

Declaration
[JsonProperty("webPropertyRef")]
public virtual WebPropertyRef WebPropertyRef { get; set; }
Property Value
Type Description
WebPropertyRef
In This Article
Back to top