Show / Hide Table of Contents

Class ProfileFilterLink

JSON template for an Analytics profile filter link.

Inheritance
System.Object
ProfileFilterLink
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 ProfileFilterLink : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

FilterRef

Filter for this link.

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

Id

Profile filter link ID.

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

Kind

Resource type for Analytics filter.

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

ProfileRef

View (Profile) for this link.

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

Rank

The rank of this profile filter link relative to the other filters linked to the same profile. For readonly (i.e., list and get) operations, the rank always starts at 1. For write (i.e., create, update, or delete) operations, you may specify a value between 0 and 255 inclusively, [0, 255]. In order to insert a link at the end of the list, either don't specify a rank or set a rank to a number greater than the largest rank in the list. In order to insert a link to the beginning of the list specify a rank that is less than or equal to 1. The new link will move all existing filters with the same or lower rank down the list. After the link is inserted/updated/deleted all profile filter links will be renumbered starting at 1.

Declaration
[JsonProperty("rank")]
public virtual int? Rank { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

SelfLink

Link for this profile filter link.

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

Implements

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