Show / Hide Table of Contents

Class TargetableRemarketingList

Contains properties of a targetable remarketing list. Remarketing enables you to create lists of users who have performed specific actions on a site, then target ads to members of those lists. This resource is a read-only view of a remarketing list to be used to faciliate targeting ads to specific lists. Remarketing lists that are owned by your advertisers and those that are shared to your advertisers or account are accessible via this resource. To manage remarketing lists that are owned by your advertisers, use the RemarketingLists resource.

Inheritance
System.Object
TargetableRemarketingList
Implements
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.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class TargetableRemarketingList : IDirectResponseSchema

Properties

AccountId

Account ID of this remarketing list. This is a read-only, auto-generated field that is only returned in GET requests.

Declaration
[JsonProperty("accountId")]
public virtual long? AccountId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Active

Whether this targetable remarketing list is active.

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

AdvertiserId

Dimension value for the advertiser ID that owns this targetable remarketing list.

Declaration
[JsonProperty("advertiserId")]
public virtual long? AdvertiserId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

AdvertiserIdDimensionValue

Dimension value for the ID of the advertiser.

Declaration
[JsonProperty("advertiserIdDimensionValue")]
public virtual DimensionValue AdvertiserIdDimensionValue { get; set; }
Property Value
Type Description
DimensionValue

Description

Targetable remarketing list description.

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

Targetable remarketing list ID.

Declaration
[JsonProperty("id")]
public virtual long? Id { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#targetableRemarketingList".

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

LifeSpan

Number of days that a user should remain in the targetable remarketing list without an impression.

Declaration
[JsonProperty("lifeSpan")]
public virtual long? LifeSpan { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ListSize

Number of users currently in the list. This is a read-only field.

Declaration
[JsonProperty("listSize")]
public virtual long? ListSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ListSource

Product from which this targetable remarketing list was originated.

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

Name

Name of the targetable remarketing list. Is no greater than 128 characters long.

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

SubaccountId

Subaccount ID of this remarketing list. This is a read-only, auto-generated field that is only returned in GET requests.

Declaration
[JsonProperty("subaccountId")]
public virtual long? SubaccountId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
In This Article
Back to top