Show / Hide Table of Contents

Class RemarketingAudience

JSON template for an Analytics remarketing audience.

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

Properties

AccountId

Account ID to which this remarketing audience belongs.

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

AudienceDefinition

The simple audience definition that will cause a user to be added to an audience.

Declaration
[JsonProperty("audienceDefinition")]
public virtual RemarketingAudience.AudienceDefinitionData AudienceDefinition { get; set; }
Property Value
Type Description
RemarketingAudience.AudienceDefinitionData

AudienceType

The type of audience, either SIMPLE or STATE_BASED.

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

Created

System.DateTime representation of CreatedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? Created { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

CreatedRaw

Time this remarketing audience was created.

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

Description

The description of this remarketing audience.

Declaration
[JsonProperty("description")]
public virtual string Description { 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

Id

Remarketing Audience ID.

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

InternalWebPropertyId

Internal ID for the web property to which this remarketing audience belongs.

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

Kind

Collection type.

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

LinkedAdAccounts

The linked ad accounts associated with this remarketing audience. A remarketing audience can have only one linkedAdAccount currently.

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

LinkedViews

The views (profiles) that this remarketing audience is linked to.

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

Name

The name of this remarketing audience.

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

StateBasedAudienceDefinition

A state based audience definition that will cause a user to be added or removed from an audience.

Declaration
[JsonProperty("stateBasedAudienceDefinition")]
public virtual RemarketingAudience.StateBasedAudienceDefinitionData StateBasedAudienceDefinition { get; set; }
Property Value
Type Description
RemarketingAudience.StateBasedAudienceDefinitionData

Updated

System.DateTime representation of UpdatedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? Updated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

UpdatedRaw

Time this remarketing audience was last modified.

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

WebPropertyId

Web property ID of the form UA-XXXXX-YY to which this remarketing audience belongs.

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

Implements

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