Show / Hide Table of Contents

Class IncludeConditions

JSON template for an Analytics Remarketing Include Conditions.

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

Properties

DaysToLookBack

The look-back window lets you specify a time frame for evaluating the behavior that qualifies users for your audience. For example, if your filters include users from Central Asia, and Transactions Greater than 2, and you set the look-back window to 14 days, then any user from Central Asia whose cumulative transactions exceed 2 during the last 14 days is added to the audience.

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

ETag

The ETag of the item.

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

IsSmartList

Boolean indicating whether this segment is a smart list. https://support.google.com/analytics/answer/4628577

Declaration
[JsonProperty("isSmartList")]
public virtual bool? IsSmartList { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Kind

Resource type for include conditions.

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

MembershipDurationDays

Number of days (in the range 1 to 540) a user remains in the audience.

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

Segment

The segment condition that will cause a user to be added to an audience.

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

Implements

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